diff --git a/src/Umbraco.Cms.Api.Common/Attributes/ShortGenericSchemaNameAttribute.cs b/src/Umbraco.Cms.Api.Common/Attributes/ShortGenericSchemaNameAttribute.cs deleted file mode 100644 index 2dd7e57d5d..0000000000 --- a/src/Umbraco.Cms.Api.Common/Attributes/ShortGenericSchemaNameAttribute.cs +++ /dev/null @@ -1,22 +0,0 @@ -namespace Umbraco.Cms.Api.Common.Attributes; - -public abstract class ShortGenericSchemaNameAttribute : Attribute -{ - public Type[] GenericTypes { get; set; } - - public string SchemaName { get; set; } - - public ShortGenericSchemaNameAttribute(string schemaName, Type[] genericTypes) - { - GenericTypes = genericTypes; - SchemaName = schemaName; - } -} - -public class ShortGenericSchemaNameAttribute : ShortGenericSchemaNameAttribute -{ - public ShortGenericSchemaNameAttribute(string schemaName) - : base(schemaName, new[] { typeof(T1), typeof(T2) }) - { - } -} diff --git a/src/Umbraco.Cms.Api.Common/OpenApi/SchemaIdSelector.cs b/src/Umbraco.Cms.Api.Common/OpenApi/SchemaIdSelector.cs index 71e3f6bd62..a97d192697 100644 --- a/src/Umbraco.Cms.Api.Common/OpenApi/SchemaIdSelector.cs +++ b/src/Umbraco.Cms.Api.Common/OpenApi/SchemaIdSelector.cs @@ -39,45 +39,7 @@ public class SchemaIdSelector : ISchemaIdSelector return name; } - // find all types that implement this type and have an matching attribute - var assignableTypesWithAttributeInfo = AppDomain.CurrentDomain.GetAssemblies() - .Where(assembly => assembly.FullName?.StartsWith("Umbraco") == true) - .SelectMany(assembly => assembly.GetTypes()) - .Where(t => t.IsAssignableTo(type)) - .Select(t => - { - var attribute = System.Attribute.GetCustomAttributes(t) - .FirstOrDefault(attribute => attribute is ShortGenericSchemaNameAttribute) as - ShortGenericSchemaNameAttribute; - return attribute == null - ? new ShortSchemaNameAttributeInfo(t) - : new ShortSchemaNameAttributeInfo(t, attribute.GenericTypes, attribute.SchemaName); - }) - .Where(info => info.GenericTypes != null); - - // We need FirstOrDefault() because through inheritance, the attribute can be on several classes implementing a base - var matchingType = assignableTypesWithAttributeInfo - .FirstOrDefault(t => t.GenericTypes!.Length == type.GenericTypeArguments.Length - && t.GenericTypes.Intersect(type.GenericTypeArguments).Count() == - type.GenericTypeArguments.Length && t.SchemaName.IsNullOrWhiteSpace() == false); - // use attribute custom name or append the generic type names, ultimately turning i.e. "PagedViewModel" into "PagedRelationItem" - return matchingType != null - ? matchingType.SchemaName! - : $"{name}{string.Join(string.Empty, type.GenericTypeArguments.Select(SanitizedTypeName))}"; - } - - private class ShortSchemaNameAttributeInfo - { - public Type Type { get; set; } - public Type[]? GenericTypes { get; set; } - public string? SchemaName { get; set; } - - public ShortSchemaNameAttributeInfo(Type type, Type[]? genericTypes = null, string? schemaName = null) - { - Type = type; - GenericTypes = genericTypes; - SchemaName = schemaName; - } + return $"{name}{string.Join(string.Empty, type.GenericTypeArguments.Select(SanitizedTypeName))}"; } } diff --git a/src/Umbraco.Cms.Api.Common/Serialization/UmbracoJsonTypeInfoResolver.cs b/src/Umbraco.Cms.Api.Common/Serialization/UmbracoJsonTypeInfoResolver.cs index 73cd5113d6..5fc8bcf5f6 100644 --- a/src/Umbraco.Cms.Api.Common/Serialization/UmbracoJsonTypeInfoResolver.cs +++ b/src/Umbraco.Cms.Api.Common/Serialization/UmbracoJsonTypeInfoResolver.cs @@ -11,12 +11,18 @@ public sealed class UmbracoJsonTypeInfoResolver : DefaultJsonTypeInfoResolver, I private readonly ConcurrentDictionary> _subTypesCache = new ConcurrentDictionary>(); public UmbracoJsonTypeInfoResolver(ITypeFinder typeFinder) - { - _typeFinder = typeFinder; - } + => _typeFinder = typeFinder; public IEnumerable FindSubTypes(Type type) { + if (type.IsInterface is false) + { + // IMPORTANT: do NOT return an empty enumerable here. it will cause nullability to fail on reference + // properties, because "$ref" does not mix and match well with "nullable" in OpenAPI. + // see also https://github.com/OAI/OpenAPI-Specification/issues/1368 + return new[] { type }; + } + if (_subTypesCache.TryGetValue(type, out ISet? cachedResult)) { return cachedResult; @@ -30,32 +36,9 @@ public sealed class UmbracoJsonTypeInfoResolver : DefaultJsonTypeInfoResolver, I public override JsonTypeInfo GetTypeInfo(Type type, JsonSerializerOptions options) { JsonTypeInfo result = base.GetTypeInfo(type, options); - - if (type.IsInterface) - { - return GetTypeInfoForInterface(result, type, options); - } - else - { - return GetTypeInfoForClass(result, type, options); - } - - } - - private JsonTypeInfo GetTypeInfoForClass(JsonTypeInfo result, Type type, JsonSerializerOptions options) - { - if (result.Kind != JsonTypeInfoKind.Object || !type.GetInterfaces().Any()) - { - return result; - } - - JsonPolymorphismOptions jsonPolymorphismOptions = result.PolymorphismOptions ?? new JsonPolymorphismOptions(); - - jsonPolymorphismOptions.DerivedTypes.Add(new JsonDerivedType(type, type.Name)); - - result.PolymorphismOptions = jsonPolymorphismOptions; - - return result; + return type.IsInterface + ? GetTypeInfoForInterface(result, type, options) + : result; } private JsonTypeInfo GetTypeInfoForInterface(JsonTypeInfo result, Type type, JsonSerializerOptions options) diff --git a/src/Umbraco.Cms.Api.Management/Configuration/ConfigureUmbracoManagementApiSwaggerGenOptions.cs b/src/Umbraco.Cms.Api.Management/Configuration/ConfigureUmbracoManagementApiSwaggerGenOptions.cs index 34e7933979..7281b86b7b 100644 --- a/src/Umbraco.Cms.Api.Management/Configuration/ConfigureUmbracoManagementApiSwaggerGenOptions.cs +++ b/src/Umbraco.Cms.Api.Management/Configuration/ConfigureUmbracoManagementApiSwaggerGenOptions.cs @@ -32,7 +32,6 @@ public class ConfigureUmbracoManagementApiSwaggerGenOptions : IConfigureOptions< swaggerGenOptions.OperationFilter(); swaggerGenOptions.SelectSubTypesUsing(_umbracoJsonTypeInfoResolver.FindSubTypes); swaggerGenOptions.UseOneOfForPolymorphism(); - swaggerGenOptions.UseAllOfForInheritance(); // Ensure all types that implements the IOpenApiDiscriminator have a $type property in the OpenApi schema with the default value (The class name) that is expected by the server swaggerGenOptions.SelectDiscriminatorNameUsing(type => typeof(IOpenApiDiscriminator).IsAssignableFrom(type) ? "$type" : null); diff --git a/src/Umbraco.Cms.Api.Management/Controllers/Document/UpdateDomainsController.cs b/src/Umbraco.Cms.Api.Management/Controllers/Document/UpdateDomainsController.cs index a878ea72ca..a7c7256c6b 100644 --- a/src/Umbraco.Cms.Api.Management/Controllers/Document/UpdateDomainsController.cs +++ b/src/Umbraco.Cms.Api.Management/Controllers/Document/UpdateDomainsController.cs @@ -28,6 +28,7 @@ public class UpdateDomainsController : DocumentControllerBase [MapToApiVersion("1.0")] [HttpPut("{id:guid}/domains")] + [ProducesResponseType(StatusCodes.Status200OK)] [ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status400BadRequest)] [ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status404NotFound)] [ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status409Conflict)] diff --git a/src/Umbraco.Cms.Api.Management/Controllers/Indexer/RebuildIndexerController.cs b/src/Umbraco.Cms.Api.Management/Controllers/Indexer/RebuildIndexerController.cs index 50491b5d7f..b64c252a1a 100644 --- a/src/Umbraco.Cms.Api.Management/Controllers/Indexer/RebuildIndexerController.cs +++ b/src/Umbraco.Cms.Api.Management/Controllers/Indexer/RebuildIndexerController.cs @@ -35,7 +35,7 @@ public class RebuildIndexerController : IndexerControllerBase [ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status400BadRequest)] [ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status404NotFound)] [ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status409Conflict)] - [ProducesResponseType(typeof(OkResult), StatusCodes.Status200OK)] + [ProducesResponseType(StatusCodes.Status200OK)] public async Task Rebuild(CancellationToken cancellationToken, string indexName) { if (!_examineManager.TryGetIndex(indexName, out var index)) diff --git a/src/Umbraco.Cms.Api.Management/Controllers/User/CreateUserController.cs b/src/Umbraco.Cms.Api.Management/Controllers/User/CreateUserController.cs index 1b00669696..b0a3a0ae5b 100644 --- a/src/Umbraco.Cms.Api.Management/Controllers/User/CreateUserController.cs +++ b/src/Umbraco.Cms.Api.Management/Controllers/User/CreateUserController.cs @@ -18,18 +18,15 @@ public class CreateUserController : UserControllerBase { private readonly IUserService _userService; private readonly IUserPresentationFactory _presentationFactory; - private readonly IUmbracoMapper _mapper; private readonly IBackOfficeSecurityAccessor _backOfficeSecurityAccessor; public CreateUserController( IUserService userService, IUserPresentationFactory presentationFactory, - IUmbracoMapper mapper, IBackOfficeSecurityAccessor backOfficeSecurityAccessor) { _userService = userService; _presentationFactory = presentationFactory; - _mapper = mapper; _backOfficeSecurityAccessor = backOfficeSecurityAccessor; } diff --git a/src/Umbraco.Cms.Api.Management/Mapping/Installer/InstallerViewModelsMapDefinition.cs b/src/Umbraco.Cms.Api.Management/Mapping/Installer/InstallerViewModelsMapDefinition.cs index fc4e89de4b..466407a818 100644 --- a/src/Umbraco.Cms.Api.Management/Mapping/Installer/InstallerViewModelsMapDefinition.cs +++ b/src/Umbraco.Cms.Api.Management/Mapping/Installer/InstallerViewModelsMapDefinition.cs @@ -11,9 +11,9 @@ public class InstallerViewModelsMapDefinition : IMapDefinition public void DefineMaps(IUmbracoMapper mapper) { mapper.Define((source, context) => new InstallData(), Map); - mapper.Define((source, context) => new UserInstallData(), Map); - mapper.Define((source, context) => new DatabaseInstallData(), Map); - mapper.Define((source, context) => new DatabaseModel(), Map); + mapper.Define((source, context) => new UserInstallData(), Map); + mapper.Define((source, context) => new DatabaseInstallData(), Map); + mapper.Define((source, context) => new DatabaseModel(), Map); mapper.Define((source, context) => new DatabaseModel(), Map); mapper.Define((source, context) => new InstallSettingsResponseModel(), Map); mapper.Define((source, context) => new UserSettingsPresentationModel(), Map); @@ -33,7 +33,7 @@ public class InstallerViewModelsMapDefinition : IMapDefinition } // Umbraco.Code.MapAll - private void Map(DatabaseInstallPresentationModel source, DatabaseModel target, MapperContext context) + private void Map(DatabaseInstallRequestModel source, DatabaseModel target, MapperContext context) { target.ConnectionString = source.ConnectionString; target.DatabaseName = source.Name ?? string.Empty; @@ -55,7 +55,7 @@ public class InstallerViewModelsMapDefinition : IMapDefinition } // Umbraco.Code.MapAll - private static void Map(UserInstallPresentationModel source, UserInstallData target, MapperContext context) + private static void Map(UserInstallRequestModel source, UserInstallData target, MapperContext context) { target.Email = source.Email; target.Name = source.Name; @@ -64,7 +64,7 @@ public class InstallerViewModelsMapDefinition : IMapDefinition } // Umbraco.Code.MapAll - private static void Map(DatabaseInstallPresentationModel source, DatabaseInstallData target, MapperContext context) + private static void Map(DatabaseInstallRequestModel source, DatabaseInstallData target, MapperContext context) { target.Id = source.Id; target.ProviderName = source.ProviderName; diff --git a/src/Umbraco.Cms.Api.Management/OpenApi.json b/src/Umbraco.Cms.Api.Management/OpenApi.json index a7de16f19a..a0a4f54327 100644 --- a/src/Umbraco.Cms.Api.Management/OpenApi.json +++ b/src/Umbraco.Cms.Api.Management/OpenApi.json @@ -53,17 +53,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedAuditLogWithUsernameResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAuditLogWithUsernameResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedAuditLogWithUsernameResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAuditLogWithUsernameResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedAuditLogWithUsernameResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAuditLogWithUsernameResponseModel" + } + ] } } } @@ -135,17 +147,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedAuditLogResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAuditLogResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedAuditLogResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAuditLogResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedAuditLogResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAuditLogResponseModel" + } + ] } } } @@ -209,17 +233,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedAuditLogResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAuditLogResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedAuditLogResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAuditLogResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedAuditLogResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAuditLogResponseModel" + } + ] } } } @@ -267,17 +303,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedCultureReponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedCultureReponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedCultureReponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedCultureReponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedCultureReponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedCultureReponseModel" + } + ] } } } @@ -378,17 +426,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -410,17 +470,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -491,17 +563,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -565,17 +649,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -597,17 +693,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -702,17 +810,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -734,17 +854,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -856,17 +988,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -925,17 +1069,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -1032,17 +1188,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -1122,17 +1290,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -1283,17 +1463,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -1315,17 +1507,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -1396,17 +1600,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -1470,17 +1686,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -1502,17 +1730,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -1607,17 +1847,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -1639,17 +1891,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -1719,17 +1983,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedDataTypeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDataTypeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedDataTypeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDataTypeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedDataTypeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDataTypeItemResponseModel" + } + ] } } } @@ -1857,17 +2133,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedModelDataTypeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelDataTypeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedModelDataTypeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelDataTypeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedModelDataTypeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelDataTypeItemResponseModel" + } + ] } } } @@ -2000,17 +2288,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedDataTypeTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDataTypeTreeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedDataTypeTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDataTypeTreeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedDataTypeTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDataTypeTreeItemResponseModel" + } + ] } } } @@ -2066,17 +2366,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedDataTypeTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDataTypeTreeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedDataTypeTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDataTypeTreeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedDataTypeTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDataTypeTreeItemResponseModel" + } + ] } } } @@ -2131,17 +2443,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedDictionaryOverviewResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDictionaryOverviewResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedDictionaryOverviewResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDictionaryOverviewResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedDictionaryOverviewResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDictionaryOverviewResponseModel" + } + ] } } } @@ -2240,17 +2564,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -2272,17 +2608,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -2304,17 +2652,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -2400,17 +2760,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -2474,17 +2846,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -2506,17 +2890,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -2611,17 +3007,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -2643,17 +3051,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -2715,20 +3135,32 @@ "content": { "application/json": { "schema": { - "type": "string", - "format": "binary" + "oneOf": [ + { + "type": "string", + "format": "binary" + } + ] } }, "text/json": { "schema": { - "type": "string", - "format": "binary" + "oneOf": [ + { + "type": "string", + "format": "binary" + } + ] } }, "text/plain": { "schema": { - "type": "string", - "format": "binary" + "oneOf": [ + { + "type": "string", + "format": "binary" + } + ] } } } @@ -2738,17 +3170,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -2845,17 +3289,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -2877,17 +3333,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -2988,17 +3456,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -3020,17 +3500,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -3146,24 +3638,6 @@ "oneOf": [ { "$ref": "#/components/schemas/NamedEntityTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DataTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DocumentBlueprintTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DocumentTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/FolderTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/MediaTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/RelationTypeTreeItemResponseModel" } ] } @@ -3176,24 +3650,6 @@ "oneOf": [ { "$ref": "#/components/schemas/NamedEntityTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DataTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DocumentBlueprintTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DocumentTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/FolderTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/MediaTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/RelationTypeTreeItemResponseModel" } ] } @@ -3206,24 +3662,6 @@ "oneOf": [ { "$ref": "#/components/schemas/NamedEntityTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DataTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DocumentBlueprintTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DocumentTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/FolderTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/MediaTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/RelationTypeTreeItemResponseModel" } ] } @@ -3282,17 +3720,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + } + ] } } } @@ -3340,17 +3790,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + } + ] } } } @@ -3451,17 +3913,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -3483,17 +3957,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -3564,17 +4050,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -3638,17 +4136,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -3670,17 +4180,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -3775,17 +4297,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -3807,17 +4341,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -3914,17 +4460,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -4025,17 +4583,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -4057,17 +4627,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -4138,17 +4720,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -4212,17 +4806,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -4244,17 +4850,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -4349,17 +4967,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -4381,17 +5011,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -4492,17 +5134,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -4654,17 +5308,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentBlueprintTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentBlueprintTreeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentBlueprintTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentBlueprintTreeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedDocumentBlueprintTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentBlueprintTreeItemResponseModel" + } + ] } } } @@ -4720,17 +5386,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentBlueprintTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentBlueprintTreeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentBlueprintTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentBlueprintTreeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedDocumentBlueprintTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentBlueprintTreeItemResponseModel" + } + ] } } } @@ -4831,17 +5509,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -4863,17 +5553,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -4944,17 +5646,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -5018,17 +5732,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -5123,17 +5849,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -5155,17 +5893,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -5222,17 +5972,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedAllowedDocumentTypeModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAllowedDocumentTypeModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedAllowedDocumentTypeModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAllowedDocumentTypeModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedAllowedDocumentTypeModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAllowedDocumentTypeModel" + } + ] } } } @@ -5242,17 +6004,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -5332,17 +6106,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -5352,17 +6138,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -5474,17 +6272,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -5506,17 +6316,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -5613,17 +6435,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -5645,17 +6479,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -5703,17 +6549,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedAllowedDocumentTypeModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAllowedDocumentTypeModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedAllowedDocumentTypeModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAllowedDocumentTypeModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedAllowedDocumentTypeModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAllowedDocumentTypeModel" + } + ] } } } @@ -5966,17 +6824,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -5998,17 +6868,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -6079,17 +6961,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -6153,17 +7047,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -6185,17 +7091,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -6290,17 +7208,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -6322,17 +7252,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -6460,17 +7402,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedModelDocumentTypeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelDocumentTypeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedModelDocumentTypeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelDocumentTypeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedModelDocumentTypeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelDocumentTypeItemResponseModel" + } + ] } } } @@ -6603,17 +7557,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentTypeTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentTypeTreeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentTypeTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentTypeTreeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedDocumentTypeTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentTypeTreeItemResponseModel" + } + ] } } } @@ -6669,17 +7635,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentTypeTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentTypeTreeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentTypeTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentTypeTreeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedDocumentTypeTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentTypeTreeItemResponseModel" + } + ] } } } @@ -6743,17 +7721,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentVersionItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentVersionItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentVersionItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentVersionItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedDocumentVersionItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentVersionItemResponseModel" + } + ] } } } @@ -6763,17 +7753,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -6783,17 +7785,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -6864,17 +7878,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -6884,17 +7910,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -6967,17 +8005,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -6999,17 +8049,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -7082,17 +8144,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -7114,17 +8188,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -7218,17 +8304,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentCollectionResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentCollectionResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentCollectionResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentCollectionResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedDocumentCollectionResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentCollectionResponseModel" + } + ] } } } @@ -7238,17 +8336,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -7258,17 +8368,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -7369,17 +8491,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -7401,17 +8535,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -7497,17 +8643,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -7574,17 +8732,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -7606,17 +8776,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -7726,17 +8908,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -7758,17 +8952,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -7895,17 +9101,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -7991,17 +9209,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -8064,6 +9294,21 @@ } }, "responses": { + "200": { + "description": "Success", + "headers": { + "Umb-Notifications": { + "description": "The list of notifications produced during the request.", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NotificationHeaderModel" + }, + "nullable": true + } + } + } + }, "400": { "description": "Bad Request", "headers": { @@ -8081,17 +9326,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -8113,17 +9370,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -8145,17 +9414,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -8252,17 +9533,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -8343,17 +9636,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -8375,17 +9680,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -8480,17 +9797,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -8588,17 +9917,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -8710,17 +10051,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -8799,17 +10152,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -8861,17 +10226,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -8969,17 +10346,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -9091,17 +10480,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -9123,17 +10524,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -9245,17 +10658,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -9277,17 +10702,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -9359,17 +10796,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedIReferenceResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedIReferenceResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedIReferenceResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedIReferenceResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedIReferenceResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedIReferenceResponseModel" + } + ] } } } @@ -9426,17 +10875,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedReferenceByIdModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedReferenceByIdModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedReferenceByIdModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedReferenceByIdModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedReferenceByIdModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedReferenceByIdModel" + } + ] } } } @@ -9533,17 +10994,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -9565,17 +11038,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -9687,17 +11172,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -9719,17 +11216,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -9804,17 +11313,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedReferenceByIdModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedReferenceByIdModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedReferenceByIdModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedReferenceByIdModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedReferenceByIdModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedReferenceByIdModel" + } + ] } } } @@ -9950,17 +11471,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -9982,17 +11515,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -10093,17 +11638,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -10125,17 +11682,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -10278,17 +11847,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedModelDocumentItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelDocumentItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedModelDocumentItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelDocumentItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedModelDocumentItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelDocumentItemResponseModel" + } + ] } } } @@ -10343,17 +11924,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -10434,17 +12027,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -10466,17 +12071,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -10562,17 +12179,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -10582,17 +12211,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -10692,17 +12333,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -10724,17 +12377,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -10805,17 +12470,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentRecycleBinItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentRecycleBinItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentRecycleBinItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentRecycleBinItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedDocumentRecycleBinItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentRecycleBinItemResponseModel" + } + ] } } } @@ -10863,17 +12540,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentRecycleBinItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentRecycleBinItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentRecycleBinItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentRecycleBinItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedDocumentRecycleBinItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentRecycleBinItemResponseModel" + } + ] } } } @@ -11006,17 +12695,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentTreeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentTreeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedDocumentTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentTreeItemResponseModel" + } + ] } } } @@ -11072,17 +12773,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentTreeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedDocumentTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentTreeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedDocumentTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedDocumentTreeItemResponseModel" + } + ] } } } @@ -11270,17 +12983,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedHealthCheckGroupResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedHealthCheckGroupResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedHealthCheckGroupResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedHealthCheckGroupResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedHealthCheckGroupResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedHealthCheckGroupResponseModel" + } + ] } } } @@ -11318,17 +13043,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -11410,17 +13147,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -11535,17 +13284,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -11659,17 +13420,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -11679,17 +13452,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedHelpPageResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedHelpPageResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedHelpPageResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedHelpPageResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedHelpPageResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedHelpPageResponseModel" + } + ] } } } @@ -11737,17 +13522,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedIndexResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedIndexResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedIndexResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedIndexResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedIndexResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedIndexResponseModel" + } + ] } } } @@ -11785,17 +13582,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -11877,17 +13686,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -11909,17 +13730,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -11941,17 +13774,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -11969,23 +13814,6 @@ "nullable": true } } - }, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OkResult" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/OkResult" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/OkResult" - } - } } }, "401": { @@ -12011,17 +13839,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -12116,17 +13956,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -12204,17 +14056,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -12341,17 +14205,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedLanguageResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedLanguageResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedLanguageResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedLanguageResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedLanguageResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedLanguageResponseModel" + } + ] } } } @@ -12420,17 +14296,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -12452,17 +14340,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -12530,17 +14430,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -12620,17 +14532,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -12652,17 +14576,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -12756,17 +14692,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -12788,17 +14736,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -12861,17 +14821,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedLoggerResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedLoggerResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedLoggerResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedLoggerResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedLoggerResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedLoggerResponseModel" + } + ] } } } @@ -12917,17 +14889,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -13047,17 +15031,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedLogMessageResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedLogMessageResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedLogMessageResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedLogMessageResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedLogMessageResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedLogMessageResponseModel" + } + ] } } } @@ -13121,17 +15117,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -13141,17 +15149,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedLogTemplateResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedLogTemplateResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedLogTemplateResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedLogTemplateResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedLogTemplateResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedLogTemplateResponseModel" + } + ] } } } @@ -13199,17 +15219,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedSavedLogSearchResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedSavedLogSearchResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedSavedLogSearchResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedSavedLogSearchResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedSavedLogSearchResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedSavedLogSearchResponseModel" + } + ] } } } @@ -13278,17 +15310,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -13356,17 +15400,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -13446,17 +15502,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -13517,17 +15585,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -13658,17 +15738,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedModelMediaTypeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelMediaTypeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedModelMediaTypeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelMediaTypeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedModelMediaTypeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelMediaTypeItemResponseModel" + } + ] } } } @@ -13769,17 +15861,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -13801,17 +15905,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -13882,17 +15998,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -13956,17 +16084,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -14061,17 +16201,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -14093,17 +16245,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -14160,17 +16324,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedAllowedMediaTypeModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAllowedMediaTypeModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedAllowedMediaTypeModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAllowedMediaTypeModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedAllowedMediaTypeModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAllowedMediaTypeModel" + } + ] } } } @@ -14180,17 +16356,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -14270,17 +16458,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -14290,17 +16490,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -14412,17 +16624,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -14444,17 +16668,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -14551,17 +16787,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -14583,17 +16831,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -14641,17 +16901,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedAllowedMediaTypeModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAllowedMediaTypeModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedAllowedMediaTypeModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAllowedMediaTypeModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedAllowedMediaTypeModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedAllowedMediaTypeModel" + } + ] } } } @@ -14854,17 +17126,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -14886,17 +17170,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -14967,17 +17263,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -15041,17 +17349,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -15073,17 +17393,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -15178,17 +17510,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -15210,17 +17554,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -15353,17 +17709,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedMediaTypeTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaTypeTreeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedMediaTypeTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaTypeTreeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedMediaTypeTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaTypeTreeItemResponseModel" + } + ] } } } @@ -15419,17 +17787,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedMediaTypeTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaTypeTreeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedMediaTypeTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaTypeTreeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedMediaTypeTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaTypeTreeItemResponseModel" + } + ] } } } @@ -15515,17 +17895,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedMediaCollectionResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaCollectionResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedMediaCollectionResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaCollectionResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedMediaCollectionResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaCollectionResponseModel" + } + ] } } } @@ -15535,17 +17927,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -15555,17 +17959,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -15693,17 +18109,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedModelMediaItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelMediaItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedModelMediaItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelMediaItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedModelMediaItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelMediaItemResponseModel" + } + ] } } } @@ -15804,17 +18232,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -15836,17 +18276,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -15932,17 +18384,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -16009,17 +18473,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -16041,17 +18517,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -16161,17 +18649,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -16193,17 +18693,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -16315,17 +18827,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -16406,17 +18930,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -16438,17 +18974,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -16520,17 +19068,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedIReferenceResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedIReferenceResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedIReferenceResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedIReferenceResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedIReferenceResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedIReferenceResponseModel" + } + ] } } } @@ -16587,17 +19147,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedReferenceByIdModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedReferenceByIdModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedReferenceByIdModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedReferenceByIdModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedReferenceByIdModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedReferenceByIdModel" + } + ] } } } @@ -16694,17 +19266,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -16726,17 +19310,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -16811,17 +19407,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedReferenceByIdModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedReferenceByIdModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedReferenceByIdModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedReferenceByIdModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedReferenceByIdModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedReferenceByIdModel" + } + ] } } } @@ -16957,17 +19565,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -16989,17 +19609,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -17100,17 +19732,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -17132,17 +19776,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -17212,17 +19868,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -17303,17 +19971,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -17335,17 +20015,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -17431,17 +20123,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -17451,17 +20155,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -17561,17 +20277,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -17593,17 +20321,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -17674,17 +20414,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedMediaRecycleBinItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaRecycleBinItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedMediaRecycleBinItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaRecycleBinItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedMediaRecycleBinItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaRecycleBinItemResponseModel" + } + ] } } } @@ -17732,17 +20484,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedMediaRecycleBinItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaRecycleBinItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedMediaRecycleBinItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaRecycleBinItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedMediaRecycleBinItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaRecycleBinItemResponseModel" + } + ] } } } @@ -17875,17 +20639,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedMediaTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaTreeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedMediaTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaTreeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedMediaTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaTreeItemResponseModel" + } + ] } } } @@ -17941,17 +20717,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedMediaTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaTreeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedMediaTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaTreeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedMediaTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMediaTreeItemResponseModel" + } + ] } } } @@ -18072,17 +20860,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedMemberGroupResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMemberGroupResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedMemberGroupResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMemberGroupResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedMemberGroupResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMemberGroupResponseModel" + } + ] } } } @@ -18195,17 +20995,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -18318,17 +21130,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -18350,17 +21174,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -18499,17 +21335,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -18531,17 +21379,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -18589,17 +21449,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + } + ] } } } @@ -18727,17 +21599,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedModelMemberTypeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelMemberTypeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedModelMemberTypeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelMemberTypeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedModelMemberTypeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelMemberTypeItemResponseModel" + } + ] } } } @@ -18838,17 +21722,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -18870,17 +21766,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -18951,17 +21859,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -19025,17 +21945,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -19130,17 +22062,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -19162,17 +22106,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -19252,17 +22208,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -19272,17 +22240,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -19363,17 +22343,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -19395,17 +22387,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -19555,17 +22559,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + } + ] } } } @@ -19664,17 +22680,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedMemberResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMemberResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedMemberResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMemberResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedMemberResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedMemberResponseModel" + } + ] } } } @@ -19684,17 +22712,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -19822,17 +22862,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedModelMemberItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelMemberItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedModelMemberItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelMemberItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedModelMemberItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelMemberItemResponseModel" + } + ] } } } @@ -19933,17 +22985,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -19965,17 +23029,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -20046,17 +23122,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -20120,17 +23208,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -20152,17 +23252,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -20257,17 +23369,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -20289,17 +23413,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -20396,17 +23532,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -20428,17 +23576,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -20574,17 +23734,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -20606,17 +23778,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -20671,17 +23855,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -20829,17 +24025,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedObjectTypeResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedObjectTypeResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedObjectTypeResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedObjectTypeResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedObjectTypeResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedObjectTypeResponseModel" + } + ] } } } @@ -20889,17 +24097,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -20921,17 +24141,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -21044,17 +24276,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedPackageDefinitionResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedPackageDefinitionResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedPackageDefinitionResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedPackageDefinitionResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedPackageDefinitionResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedPackageDefinitionResponseModel" + } + ] } } } @@ -21123,17 +24367,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -21155,17 +24411,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -21234,17 +24502,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -21325,17 +24605,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -21430,17 +24722,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -21494,17 +24798,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -21514,20 +24830,32 @@ "content": { "application/json": { "schema": { - "type": "string", - "format": "binary" + "oneOf": [ + { + "type": "string", + "format": "binary" + } + ] } }, "text/json": { "schema": { - "type": "string", - "format": "binary" + "oneOf": [ + { + "type": "string", + "format": "binary" + } + ] } }, "text/plain": { "schema": { - "type": "string", - "format": "binary" + "oneOf": [ + { + "type": "string", + "format": "binary" + } + ] } } } @@ -21685,17 +25013,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedPackageMigrationStatusResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedPackageMigrationStatusResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedPackageMigrationStatusResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedPackageMigrationStatusResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedPackageMigrationStatusResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedPackageMigrationStatusResponseModel" + } + ] } } } @@ -21868,17 +25208,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -21900,17 +25252,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -21980,17 +25344,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -22053,17 +25429,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -22085,17 +25473,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -22189,17 +25589,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -22221,17 +25633,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -22342,17 +25766,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -22374,17 +25810,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -22485,17 +25933,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -22517,17 +25977,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -22597,17 +26069,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -22670,17 +26154,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -22702,17 +26198,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -22760,17 +26268,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedPartialViewSnippetItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedPartialViewSnippetItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedPartialViewSnippetItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedPartialViewSnippetItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedPartialViewSnippetItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedPartialViewSnippetItemResponseModel" + } + ] } } } @@ -22840,17 +26360,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -22973,17 +26505,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } } } @@ -23031,17 +26575,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } } } @@ -23262,17 +26818,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -23484,17 +27052,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -23504,17 +27084,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedRedirectUrlResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedRedirectUrlResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedRedirectUrlResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedRedirectUrlResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedRedirectUrlResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedRedirectUrlResponseModel" + } + ] } } } @@ -23571,17 +27163,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedRedirectUrlResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedRedirectUrlResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedRedirectUrlResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedRedirectUrlResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedRedirectUrlResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedRedirectUrlResponseModel" + } + ] } } } @@ -23834,17 +27438,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedRelationTypeResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedRelationTypeResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedRelationTypeResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedRelationTypeResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedRelationTypeResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedRelationTypeResponseModel" + } + ] } } } @@ -23915,17 +27531,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -23982,17 +27610,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedRelationResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedRelationResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedRelationResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedRelationResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedRelationResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedRelationResponseModel" + } + ] } } } @@ -24002,17 +27642,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedProblemDetailsModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedProblemDetailsModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedProblemDetailsModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedProblemDetailsModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedProblemDetailsModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedProblemDetailsModel" + } + ] } } } @@ -24185,17 +27837,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -24217,17 +27881,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -24297,17 +27973,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -24370,17 +28058,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -24402,17 +28102,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -24506,17 +28218,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -24538,17 +28262,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -24659,17 +28395,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -24691,17 +28439,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -24802,17 +28562,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -24834,17 +28606,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -24914,17 +28698,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -24987,17 +28783,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -25019,17 +28827,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -25152,17 +28972,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } } } @@ -25210,17 +29042,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } } } @@ -25268,17 +29112,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedSearcherResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedSearcherResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedSearcherResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedSearcherResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedSearcherResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedSearcherResponseModel" + } + ] } } } @@ -25341,17 +29197,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedSearchResultResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedSearchResultResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedSearchResultResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedSearchResultResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedSearchResultResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedSearchResultResponseModel" + } + ] } } } @@ -25361,17 +29229,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -25507,17 +29387,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -25698,9 +29590,6 @@ "oneOf": [ { "$ref": "#/components/schemas/VerifyResetPasswordTokenRequestModel" - }, - { - "$ref": "#/components/schemas/ResetPasswordTokenRequestModel" } ] } @@ -25710,9 +29599,6 @@ "oneOf": [ { "$ref": "#/components/schemas/VerifyResetPasswordTokenRequestModel" - }, - { - "$ref": "#/components/schemas/ResetPasswordTokenRequestModel" } ] } @@ -25722,9 +29608,6 @@ "oneOf": [ { "$ref": "#/components/schemas/VerifyResetPasswordTokenRequestModel" - }, - { - "$ref": "#/components/schemas/ResetPasswordTokenRequestModel" } ] } @@ -25979,17 +29862,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -26258,17 +30153,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } } } @@ -26316,17 +30223,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } } } @@ -26499,17 +30418,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -26531,17 +30462,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -26611,17 +30554,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -26684,17 +30639,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -26716,17 +30683,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -26820,17 +30799,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -26852,17 +30843,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -26973,17 +30976,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -27005,17 +31020,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -27116,17 +31143,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -27148,17 +31187,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -27228,17 +31279,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -27301,17 +31364,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -27333,17 +31408,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -27466,17 +31553,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } } } @@ -27524,17 +31623,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedFileSystemTreeItemPresentationModel" + } + ] } } } @@ -27603,17 +31714,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedTagResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedTagResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedTagResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedTagResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedTagResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedTagResponseModel" + } + ] } } } @@ -27661,17 +31784,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedTelemetryResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedTelemetryResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedTelemetryResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedTelemetryResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedTelemetryResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedTelemetryResponseModel" + } + ] } } } @@ -27790,17 +31925,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -27943,17 +32090,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedModelTemplateItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelTemplateItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedModelTemplateItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelTemplateItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedModelTemplateItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedModelTemplateItemResponseModel" + } + ] } } } @@ -28054,17 +32213,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -28086,17 +32257,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -28167,17 +32350,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -28241,17 +32436,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -28273,17 +32480,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -28378,17 +32597,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -28410,17 +32641,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -28656,24 +32899,6 @@ "oneOf": [ { "$ref": "#/components/schemas/NamedEntityTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DataTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DocumentBlueprintTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DocumentTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/FolderTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/MediaTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/RelationTypeTreeItemResponseModel" } ] } @@ -28686,24 +32911,6 @@ "oneOf": [ { "$ref": "#/components/schemas/NamedEntityTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DataTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DocumentBlueprintTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DocumentTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/FolderTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/MediaTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/RelationTypeTreeItemResponseModel" } ] } @@ -28716,24 +32923,6 @@ "oneOf": [ { "$ref": "#/components/schemas/NamedEntityTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DataTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DocumentBlueprintTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DocumentTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/FolderTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/MediaTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/RelationTypeTreeItemResponseModel" } ] } @@ -28792,17 +32981,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + } + ] } } } @@ -28850,17 +33051,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedNamedEntityTreeItemResponseModel" + } + ] } } } @@ -28957,17 +33170,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -29006,17 +33231,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -29026,17 +33263,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -29117,17 +33366,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -29149,17 +33410,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -29391,17 +33664,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -29423,17 +33708,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -29493,17 +33790,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -29662,17 +33971,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -29756,17 +34077,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -29842,17 +34175,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedUserGroupResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedUserGroupResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedUserGroupResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedUserGroupResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedUserGroupResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedUserGroupResponseModel" + } + ] } } } @@ -29923,17 +34268,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -30000,17 +34357,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -30120,17 +34489,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -30227,17 +34608,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -30347,17 +34740,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -30465,17 +34870,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedUserResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedUserResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedUserResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedUserResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedUserResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedUserResponseModel" + } + ] } } } @@ -30485,17 +34902,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -30505,17 +34934,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -30617,9 +35058,6 @@ "oneOf": [ { "$ref": "#/components/schemas/CreateUserRequestModel" - }, - { - "$ref": "#/components/schemas/InviteUserRequestModel" } ] } @@ -30629,9 +35067,6 @@ "oneOf": [ { "$ref": "#/components/schemas/CreateUserRequestModel" - }, - { - "$ref": "#/components/schemas/InviteUserRequestModel" } ] } @@ -30641,9 +35076,6 @@ "oneOf": [ { "$ref": "#/components/schemas/CreateUserRequestModel" - }, - { - "$ref": "#/components/schemas/InviteUserRequestModel" } ] } @@ -30698,17 +35130,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -30730,17 +35174,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -30824,17 +35280,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -30895,17 +35363,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedUserResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedUserResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedUserResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedUserResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedUserResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedUserResponseModel" + } + ] } } } @@ -30915,17 +35395,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -30996,17 +35488,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -31073,17 +35577,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -31105,17 +35621,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -31225,17 +35753,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -31257,17 +35797,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -31362,17 +35914,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -31449,17 +36013,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -31481,17 +36057,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -31546,9 +36134,6 @@ "oneOf": [ { "$ref": "#/components/schemas/ChangePasswordUserRequestModel" - }, - { - "$ref": "#/components/schemas/ChangePasswordCurrentUserRequestModel" } ] } @@ -31558,9 +36143,6 @@ "oneOf": [ { "$ref": "#/components/schemas/ChangePasswordUserRequestModel" - }, - { - "$ref": "#/components/schemas/ChangePasswordCurrentUserRequestModel" } ] } @@ -31570,9 +36152,6 @@ "oneOf": [ { "$ref": "#/components/schemas/ChangePasswordUserRequestModel" - }, - { - "$ref": "#/components/schemas/ChangePasswordCurrentUserRequestModel" } ] } @@ -31612,17 +36191,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -31644,17 +36235,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -31764,17 +36367,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -31796,17 +36411,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -31887,17 +36514,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -31919,17 +36558,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -32039,17 +36690,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -32071,17 +36734,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -32330,17 +37005,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -32362,17 +37049,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -32495,17 +37194,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -32527,17 +37238,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -32605,17 +37328,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -32625,17 +37360,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -32721,17 +37468,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -32832,17 +37591,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -33016,17 +37787,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -33109,17 +37892,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -33193,17 +37988,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -33289,17 +38096,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -33321,17 +38140,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -33432,17 +38263,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -33464,17 +38307,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -33590,17 +38445,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -33622,17 +38489,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -33718,17 +38597,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -33750,17 +38641,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -33838,17 +38741,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -33870,17 +38785,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -33909,9 +38836,6 @@ "oneOf": [ { "$ref": "#/components/schemas/VerifyInviteUserRequestModel" - }, - { - "$ref": "#/components/schemas/CreateInitialPasswordUserRequestModel" } ] } @@ -33921,9 +38845,6 @@ "oneOf": [ { "$ref": "#/components/schemas/VerifyInviteUserRequestModel" - }, - { - "$ref": "#/components/schemas/CreateInitialPasswordUserRequestModel" } ] } @@ -33933,9 +38854,6 @@ "oneOf": [ { "$ref": "#/components/schemas/VerifyInviteUserRequestModel" - }, - { - "$ref": "#/components/schemas/CreateInitialPasswordUserRequestModel" } ] } @@ -34004,17 +38922,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -34036,17 +38966,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -34203,17 +39145,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -34276,17 +39230,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/PagedWebhookResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedWebhookResponseModel" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/PagedWebhookResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedWebhookResponseModel" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/PagedWebhookResponseModel" + "oneOf": [ + { + "$ref": "#/components/schemas/PagedWebhookResponseModel" + } + ] } } } @@ -34385,17 +39351,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -34417,17 +39395,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -34498,17 +39488,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -34588,17 +39590,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -34620,17 +39634,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -34694,17 +39720,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -34726,17 +39764,29 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/json": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } }, "text/plain": { "schema": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } } @@ -34843,7 +39893,7 @@ }, "components": { "schemas": { - "AllowedContentTypeModel": { + "AllowedDocumentTypeModel": { "required": [ "id", "name" @@ -34868,25 +39918,47 @@ }, "additionalProperties": false }, - "AllowedDocumentTypeModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/AllowedContentTypeModel" - } - ], - "additionalProperties": false - }, "AllowedMediaTypeModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/AllowedContentTypeModel" - } + "required": [ + "id", + "name" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "icon": { + "type": "string", + "nullable": true + } + }, "additionalProperties": false }, - "AuditLogBaseModel": { + "AuditLogEntityModel": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "type": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AuditLogResponseModel": { "required": [ "logType", "timestamp", @@ -34927,41 +39999,45 @@ }, "additionalProperties": false }, - "AuditLogEntityModel": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true - }, - "type": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "AuditLogResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/AuditLogBaseModel" - } - ], - "additionalProperties": false - }, "AuditLogWithUsernameResponseModel": { "required": [ + "logType", + "timestamp", + "user", "userAvatars" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/AuditLogBaseModel" - } - ], "properties": { + "user": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ] + }, + "entity": { + "oneOf": [ + { + "$ref": "#/components/schemas/AuditLogEntityModel" + } + ], + "nullable": true + }, + "timestamp": { + "type": "string", + "format": "date-time" + }, + "logType": { + "$ref": "#/components/schemas/AuditTypeModel" + }, + "comment": { + "type": "string", + "nullable": true + }, + "parameters": { + "type": "string", + "nullable": true + }, "userName": { "type": "string", "nullable": true @@ -35004,7 +40080,7 @@ ], "type": "string" }, - "AvailableContentTypeCompositionResponseModelBaseModel": { + "AvailableDocumentTypeCompositionResponseModel": { "required": [ "folderPath", "icon", @@ -35036,41 +40112,79 @@ }, "additionalProperties": false }, - "AvailableDocumentTypeCompositionResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/AvailableContentTypeCompositionResponseModelBaseModel" - } - ], - "additionalProperties": false - }, "AvailableMediaTypeCompositionResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/AvailableContentTypeCompositionResponseModelBaseModel" - } + "required": [ + "folderPath", + "icon", + "id", + "isCompatible", + "name" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string" + }, + "icon": { + "type": "string" + }, + "folderPath": { + "type": "array", + "items": { + "type": "string" + } + }, + "isCompatible": { + "type": "boolean" + } + }, "additionalProperties": false }, "AvailableMemberTypeCompositionResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/AvailableContentTypeCompositionResponseModelBaseModel" - } + "required": [ + "folderPath", + "icon", + "id", + "isCompatible", + "name" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string" + }, + "icon": { + "type": "string" + }, + "folderPath": { + "type": "array", + "items": { + "type": "string" + } + }, + "isCompatible": { + "type": "boolean" + } + }, "additionalProperties": false }, "ChangePasswordCurrentUserRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ChangePasswordUserRequestModel" - } + "required": [ + "newPassword" ], + "type": "object", "properties": { + "newPassword": { + "type": "string" + }, "oldPassword": { "type": "string", "nullable": true @@ -35114,607 +40228,6 @@ }, "additionalProperties": false }, - "ContentCollectionResponseModelBaseDocumentValueModelDocumentVariantResponseModel": { - "required": [ - "id", - "sortOrder", - "values", - "variants" - ], - "type": "object", - "properties": { - "values": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/DocumentValueModel" - } - ] - } - }, - "variants": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/DocumentVariantResponseModel" - } - ] - } - }, - "id": { - "type": "string", - "format": "uuid" - }, - "creator": { - "type": "string", - "nullable": true - }, - "sortOrder": { - "type": "integer", - "format": "int32" - } - }, - "additionalProperties": false - }, - "ContentCollectionResponseModelBaseMediaValueModelMediaVariantResponseModel": { - "required": [ - "id", - "sortOrder", - "values", - "variants" - ], - "type": "object", - "properties": { - "values": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MediaValueModel" - } - ] - } - }, - "variants": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MediaVariantResponseModel" - } - ] - } - }, - "id": { - "type": "string", - "format": "uuid" - }, - "creator": { - "type": "string", - "nullable": true - }, - "sortOrder": { - "type": "integer", - "format": "int32" - } - }, - "additionalProperties": false - }, - "ContentForDocumentResponseModel": { - "required": [ - "documentType", - "id", - "values", - "variants" - ], - "type": "object", - "properties": { - "values": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/DocumentValueModel" - } - ] - } - }, - "variants": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/DocumentVariantResponseModel" - } - ] - } - }, - "id": { - "type": "string", - "format": "uuid" - }, - "documentType": { - "oneOf": [ - { - "$ref": "#/components/schemas/DocumentTypeReferenceResponseModel" - } - ] - } - }, - "additionalProperties": false - }, - "ContentForMediaResponseModel": { - "required": [ - "id", - "values", - "variants" - ], - "type": "object", - "properties": { - "values": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MediaValueModel" - } - ] - } - }, - "variants": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MediaVariantResponseModel" - } - ] - } - }, - "id": { - "type": "string", - "format": "uuid" - } - }, - "additionalProperties": false - }, - "ContentForMemberResponseModel": { - "required": [ - "id", - "values", - "variants" - ], - "type": "object", - "properties": { - "values": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MemberValueModel" - } - ] - } - }, - "variants": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MemberVariantResponseModel" - } - ] - } - }, - "id": { - "type": "string", - "format": "uuid" - } - }, - "additionalProperties": false - }, - "ContentTreeItemResponseModel": { - "required": [ - "hasChildren", - "id", - "isTrashed", - "noAccess" - ], - "type": "object", - "properties": { - "hasChildren": { - "type": "boolean" - }, - "parent": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ], - "nullable": true - }, - "noAccess": { - "type": "boolean" - }, - "isTrashed": { - "type": "boolean" - }, - "id": { - "type": "string", - "format": "uuid" - } - }, - "additionalProperties": false - }, - "ContentTypeCleanupBaseModel": { - "required": [ - "preventCleanup" - ], - "type": "object", - "properties": { - "preventCleanup": { - "type": "boolean" - }, - "keepAllVersionsNewerThanDays": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "keepLatestVersionPerDayForDays": { - "type": "integer", - "format": "int32", - "nullable": true - } - }, - "additionalProperties": false - }, - "ContentTypeCollectionReferenceResponseModelBaseModel": { - "required": [ - "alias", - "icon", - "id" - ], - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid" - }, - "alias": { - "type": "string" - }, - "icon": { - "type": "string" - } - }, - "additionalProperties": false - }, - "ContentTypeCompositionRequestModelBaseModel": { - "required": [ - "currentCompositeIds", - "currentPropertyAliases" - ], - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true - }, - "currentPropertyAliases": { - "type": "array", - "items": { - "type": "string" - } - }, - "currentCompositeIds": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - "additionalProperties": false - }, - "ContentTypeCompositionResponseModelBaseModel": { - "required": [ - "icon", - "id", - "name" - ], - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid" - }, - "name": { - "type": "string" - }, - "icon": { - "type": "string" - } - }, - "additionalProperties": false - }, - "ContentTypeForDocumentTypeResponseModel": { - "required": [ - "alias", - "allowedAsRoot", - "containers", - "icon", - "id", - "isElement", - "name", - "properties", - "variesByCulture", - "variesBySegment" - ], - "type": "object", - "properties": { - "alias": { - "minLength": 1, - "type": "string" - }, - "name": { - "minLength": 1, - "type": "string" - }, - "description": { - "type": "string", - "nullable": true - }, - "icon": { - "minLength": 1, - "type": "string" - }, - "allowedAsRoot": { - "type": "boolean" - }, - "variesByCulture": { - "type": "boolean" - }, - "variesBySegment": { - "type": "boolean" - }, - "collection": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ], - "nullable": true - }, - "isElement": { - "type": "boolean" - }, - "properties": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/DocumentTypePropertyTypeResponseModel" - } - ] - } - }, - "containers": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/DocumentTypePropertyTypeContainerResponseModel" - } - ] - } - }, - "id": { - "type": "string", - "format": "uuid" - } - }, - "additionalProperties": false - }, - "ContentTypeForMediaTypeResponseModel": { - "required": [ - "alias", - "allowedAsRoot", - "containers", - "icon", - "id", - "isElement", - "name", - "properties", - "variesByCulture", - "variesBySegment" - ], - "type": "object", - "properties": { - "alias": { - "minLength": 1, - "type": "string" - }, - "name": { - "minLength": 1, - "type": "string" - }, - "description": { - "type": "string", - "nullable": true - }, - "icon": { - "minLength": 1, - "type": "string" - }, - "allowedAsRoot": { - "type": "boolean" - }, - "variesByCulture": { - "type": "boolean" - }, - "variesBySegment": { - "type": "boolean" - }, - "collection": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ], - "nullable": true - }, - "isElement": { - "type": "boolean" - }, - "properties": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MediaTypePropertyTypeResponseModel" - } - ] - } - }, - "containers": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MediaTypePropertyTypeContainerResponseModel" - } - ] - } - }, - "id": { - "type": "string", - "format": "uuid" - } - }, - "additionalProperties": false - }, - "ContentTypeForMemberTypeResponseModel": { - "required": [ - "alias", - "allowedAsRoot", - "containers", - "icon", - "id", - "isElement", - "name", - "properties", - "variesByCulture", - "variesBySegment" - ], - "type": "object", - "properties": { - "alias": { - "minLength": 1, - "type": "string" - }, - "name": { - "minLength": 1, - "type": "string" - }, - "description": { - "type": "string", - "nullable": true - }, - "icon": { - "minLength": 1, - "type": "string" - }, - "allowedAsRoot": { - "type": "boolean" - }, - "variesByCulture": { - "type": "boolean" - }, - "variesBySegment": { - "type": "boolean" - }, - "collection": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ], - "nullable": true - }, - "isElement": { - "type": "boolean" - }, - "properties": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MemberTypePropertyTypeResponseModel" - } - ] - } - }, - "containers": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MemberTypePropertyTypeContainerResponseModel" - } - ] - } - }, - "id": { - "type": "string", - "format": "uuid" - } - }, - "additionalProperties": false - }, - "ContentTypeReferenceResponseModelBaseModel": { - "required": [ - "icon", - "id" - ], - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid" - }, - "icon": { - "type": "string" - }, - "collection": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ], - "nullable": true - } - }, - "additionalProperties": false - }, - "ContentUrlInfoBaseModel": { - "required": [ - "url" - ], - "type": "object", - "properties": { - "culture": { - "type": "string", - "nullable": true - }, - "url": { - "type": "string" - } - }, - "additionalProperties": false - }, "CopyDataTypeRequestModel": { "type": "object", "properties": { @@ -35781,7 +40294,123 @@ }, "additionalProperties": false }, - "CreateContentForDocumentRequestModel": { + "CreateDataTypeRequestModel": { + "required": [ + "editorAlias", + "name", + "values" + ], + "type": "object", + "properties": { + "name": { + "minLength": 1, + "type": "string" + }, + "editorAlias": { + "minLength": 1, + "type": "string" + }, + "editorUiAlias": { + "type": "string", + "nullable": true + }, + "values": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DataTypePropertyPresentationModel" + } + ] + } + }, + "id": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + } + }, + "additionalProperties": false + }, + "CreateDictionaryItemRequestModel": { + "required": [ + "name", + "translations" + ], + "type": "object", + "properties": { + "name": { + "minLength": 1, + "type": "string" + }, + "translations": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DictionaryItemTranslationModel" + } + ] + } + }, + "id": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + } + }, + "additionalProperties": false + }, + "CreateDocumentBlueprintFromDocumentRequestModel": { + "required": [ + "document", + "name" + ], + "type": "object", + "properties": { + "document": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ] + }, + "id": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "name": { + "type": "string" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + } + }, + "additionalProperties": false + }, + "CreateDocumentBlueprintRequestModel": { "required": [ "documentType", "values", @@ -35832,8 +40461,9 @@ }, "additionalProperties": false }, - "CreateContentForMediaRequestModel": { + "CreateDocumentRequestModel": { "required": [ + "documentType", "values", "variants" ], @@ -35844,7 +40474,7 @@ "items": { "oneOf": [ { - "$ref": "#/components/schemas/MediaValueModel" + "$ref": "#/components/schemas/DocumentValueModel" } ] } @@ -35854,7 +40484,7 @@ "items": { "oneOf": [ { - "$ref": "#/components/schemas/MediaVariantRequestModel" + "$ref": "#/components/schemas/DocumentVariantRequestModel" } ] } @@ -35871,49 +40501,140 @@ } ], "nullable": true - } - }, - "additionalProperties": false - }, - "CreateContentForMemberRequestModel": { - "required": [ - "values", - "variants" - ], - "type": "object", - "properties": { - "values": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MemberValueModel" - } - ] - } }, - "variants": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MemberVariantRequestModel" - } - ] - } + "documentType": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ] }, - "id": { - "type": "string", - "format": "uuid", + "template": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], "nullable": true } }, "additionalProperties": false }, - "CreateContentTypeForDocumentTypeRequestModel": { + "CreateDocumentTypePropertyTypeContainerRequestModel": { + "required": [ + "id", + "sortOrder", + "type" + ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "type": { + "minLength": 1, + "type": "string" + }, + "sortOrder": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "CreateDocumentTypePropertyTypeRequestModel": { + "required": [ + "alias", + "appearance", + "dataType", + "id", + "name", + "sortOrder", + "validation", + "variesByCulture", + "variesBySegment" + ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "container": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "sortOrder": { + "type": "integer", + "format": "int32" + }, + "alias": { + "minLength": 1, + "type": "string" + }, + "name": { + "minLength": 1, + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "dataType": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ] + }, + "variesByCulture": { + "type": "boolean" + }, + "variesBySegment": { + "type": "boolean" + }, + "validation": { + "oneOf": [ + { + "$ref": "#/components/schemas/PropertyTypeValidationModel" + } + ] + }, + "appearance": { + "oneOf": [ + { + "$ref": "#/components/schemas/PropertyTypeAppearanceModel" + } + ] + } + }, + "additionalProperties": false + }, + "CreateDocumentTypeRequestModel": { "required": [ "alias", "allowedAsRoot", + "allowedDocumentTypes", + "allowedTemplates", + "cleanup", + "compositions", "containers", "icon", "isElement", @@ -35992,14 +40713,300 @@ } ], "nullable": true + }, + "allowedTemplates": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ] + } + }, + "defaultTemplate": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "cleanup": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentTypeCleanupModel" + } + ] + }, + "allowedDocumentTypes": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentTypeSortModel" + } + ] + } + }, + "compositions": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentTypeCompositionModel" + } + ] + } } }, "additionalProperties": false }, - "CreateContentTypeForMediaTypeRequestModel": { + "CreateFolderRequestModel": { + "required": [ + "name" + ], + "type": "object", + "properties": { + "name": { + "minLength": 1, + "type": "string" + }, + "id": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + } + }, + "additionalProperties": false + }, + "CreateInitialPasswordUserRequestModel": { + "required": [ + "password", + "token", + "user" + ], + "type": "object", + "properties": { + "user": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ] + }, + "token": { + "minLength": 1, + "type": "string" + }, + "password": { + "type": "string" + } + }, + "additionalProperties": false + }, + "CreateLanguageRequestModel": { + "required": [ + "isDefault", + "isMandatory", + "isoCode", + "name" + ], + "type": "object", + "properties": { + "name": { + "minLength": 1, + "type": "string" + }, + "isDefault": { + "type": "boolean" + }, + "isMandatory": { + "type": "boolean" + }, + "fallbackIsoCode": { + "type": "string", + "nullable": true + }, + "isoCode": { + "minLength": 1, + "type": "string" + } + }, + "additionalProperties": false + }, + "CreateMediaRequestModel": { + "required": [ + "mediaType", + "values", + "variants" + ], + "type": "object", + "properties": { + "values": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MediaValueModel" + } + ] + } + }, + "variants": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MediaVariantRequestModel" + } + ] + } + }, + "id": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "mediaType": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ] + } + }, + "additionalProperties": false + }, + "CreateMediaTypePropertyTypeContainerRequestModel": { + "required": [ + "id", + "sortOrder", + "type" + ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "type": { + "minLength": 1, + "type": "string" + }, + "sortOrder": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "CreateMediaTypePropertyTypeRequestModel": { + "required": [ + "alias", + "appearance", + "dataType", + "id", + "name", + "sortOrder", + "validation", + "variesByCulture", + "variesBySegment" + ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "container": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "sortOrder": { + "type": "integer", + "format": "int32" + }, + "alias": { + "minLength": 1, + "type": "string" + }, + "name": { + "minLength": 1, + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "dataType": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ] + }, + "variesByCulture": { + "type": "boolean" + }, + "variesBySegment": { + "type": "boolean" + }, + "validation": { + "oneOf": [ + { + "$ref": "#/components/schemas/PropertyTypeValidationModel" + } + ] + }, + "appearance": { + "oneOf": [ + { + "$ref": "#/components/schemas/PropertyTypeAppearanceModel" + } + ] + } + }, + "additionalProperties": false + }, + "CreateMediaTypeRequestModel": { "required": [ "alias", "allowedAsRoot", + "allowedMediaTypes", + "compositions", "containers", "icon", "isElement", @@ -36035,14 +41042,6 @@ "variesBySegment": { "type": "boolean" }, - "collection": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ], - "nullable": true - }, "isElement": { "type": "boolean" }, @@ -36078,14 +41077,245 @@ } ], "nullable": true + }, + "allowedMediaTypes": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MediaTypeSortModel" + } + ] + } + }, + "compositions": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MediaTypeCompositionModel" + } + ] + } + }, + "collection": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true } }, "additionalProperties": false }, - "CreateContentTypeForMemberTypeRequestModel": { + "CreateMemberGroupRequestModel": { + "required": [ + "name" + ], + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "id": { + "type": "string", + "format": "uuid", + "nullable": true + } + }, + "additionalProperties": false + }, + "CreateMemberRequestModel": { + "required": [ + "email", + "isApproved", + "memberType", + "password", + "username", + "values", + "variants" + ], + "type": "object", + "properties": { + "values": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MemberValueModel" + } + ] + } + }, + "variants": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MemberVariantRequestModel" + } + ] + } + }, + "id": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "email": { + "type": "string" + }, + "username": { + "type": "string" + }, + "password": { + "type": "string" + }, + "memberType": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ] + }, + "groups": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "isApproved": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "CreateMemberTypePropertyTypeContainerRequestModel": { + "required": [ + "id", + "sortOrder", + "type" + ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "type": { + "minLength": 1, + "type": "string" + }, + "sortOrder": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "CreateMemberTypePropertyTypeRequestModel": { + "required": [ + "alias", + "appearance", + "dataType", + "id", + "isSensitive", + "name", + "sortOrder", + "validation", + "variesByCulture", + "variesBySegment", + "visibility" + ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "container": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "sortOrder": { + "type": "integer", + "format": "int32" + }, + "alias": { + "minLength": 1, + "type": "string" + }, + "name": { + "minLength": 1, + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "dataType": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ] + }, + "variesByCulture": { + "type": "boolean" + }, + "variesBySegment": { + "type": "boolean" + }, + "validation": { + "oneOf": [ + { + "$ref": "#/components/schemas/PropertyTypeValidationModel" + } + ] + }, + "appearance": { + "oneOf": [ + { + "$ref": "#/components/schemas/PropertyTypeAppearanceModel" + } + ] + }, + "isSensitive": { + "type": "boolean" + }, + "visibility": { + "oneOf": [ + { + "$ref": "#/components/schemas/MemberTypePropertyTypeVisibilityModel" + } + ] + } + }, + "additionalProperties": false + }, + "CreateMemberTypeRequestModel": { "required": [ "alias", "allowedAsRoot", + "compositions", "containers", "icon", "isElement", @@ -36152,433 +41382,11 @@ ] } }, - "id": { - "type": "string", - "format": "uuid", - "nullable": true - } - }, - "additionalProperties": false - }, - "CreateDataTypeRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/DataTypeModelBaseModel" - } - ], - "properties": { "id": { "type": "string", "format": "uuid", "nullable": true }, - "parent": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ], - "nullable": true - } - }, - "additionalProperties": false - }, - "CreateDictionaryItemRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/DictionaryItemModelBaseModel" - } - ], - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true - }, - "parent": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ], - "nullable": true - } - }, - "additionalProperties": false - }, - "CreateDocumentBlueprintFromDocumentRequestModel": { - "required": [ - "document", - "name" - ], - "type": "object", - "properties": { - "document": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ] - }, - "id": { - "type": "string", - "format": "uuid", - "nullable": true - }, - "name": { - "type": "string" - }, - "parent": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ], - "nullable": true - } - }, - "additionalProperties": false - }, - "CreateDocumentBlueprintRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/CreateContentForDocumentRequestModel" - } - ], - "additionalProperties": false - }, - "CreateDocumentRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/CreateContentForDocumentRequestModel" - } - ], - "properties": { - "template": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ], - "nullable": true - } - }, - "additionalProperties": false - }, - "CreateDocumentTypePropertyTypeContainerRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PropertyTypeContainerModelBaseModel" - } - ], - "additionalProperties": false - }, - "CreateDocumentTypePropertyTypeRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PropertyTypeModelBaseModel" - } - ], - "additionalProperties": false - }, - "CreateDocumentTypeRequestModel": { - "required": [ - "allowedDocumentTypes", - "allowedTemplates", - "cleanup", - "compositions" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/CreateContentTypeForDocumentTypeRequestModel" - } - ], - "properties": { - "allowedTemplates": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ] - } - }, - "defaultTemplate": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ], - "nullable": true - }, - "cleanup": { - "oneOf": [ - { - "$ref": "#/components/schemas/DocumentTypeCleanupModel" - } - ] - }, - "allowedDocumentTypes": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/DocumentTypeSortModel" - } - ] - } - }, - "compositions": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/DocumentTypeCompositionModel" - } - ] - } - } - }, - "additionalProperties": false - }, - "CreateFolderRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FolderModelBaseModel" - } - ], - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true - }, - "parent": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ], - "nullable": true - } - }, - "additionalProperties": false - }, - "CreateInitialPasswordUserRequestModel": { - "required": [ - "password" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/VerifyInviteUserRequestModel" - } - ], - "properties": { - "password": { - "type": "string" - } - }, - "additionalProperties": false - }, - "CreateLanguageRequestModel": { - "required": [ - "isoCode" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/LanguageModelBaseModel" - } - ], - "properties": { - "isoCode": { - "minLength": 1, - "type": "string" - } - }, - "additionalProperties": false - }, - "CreateMediaRequestModel": { - "required": [ - "mediaType" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/CreateContentForMediaRequestModel" - } - ], - "properties": { - "mediaType": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ] - } - }, - "additionalProperties": false - }, - "CreateMediaTypePropertyTypeContainerRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PropertyTypeContainerModelBaseModel" - } - ], - "additionalProperties": false - }, - "CreateMediaTypePropertyTypeRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PropertyTypeModelBaseModel" - } - ], - "additionalProperties": false - }, - "CreateMediaTypeRequestModel": { - "required": [ - "allowedMediaTypes", - "compositions" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/CreateContentTypeForMediaTypeRequestModel" - } - ], - "properties": { - "allowedMediaTypes": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MediaTypeSortModel" - } - ] - } - }, - "compositions": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MediaTypeCompositionModel" - } - ] - } - }, - "collection": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ], - "nullable": true - } - }, - "additionalProperties": false - }, - "CreateMemberGroupRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/MemberGroupPresentationBaseModel" - } - ], - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true - } - }, - "additionalProperties": false - }, - "CreateMemberRequestModel": { - "required": [ - "email", - "isApproved", - "memberType", - "password", - "username" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/CreateContentForMemberRequestModel" - } - ], - "properties": { - "email": { - "type": "string" - }, - "username": { - "type": "string" - }, - "password": { - "type": "string" - }, - "memberType": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ] - }, - "groups": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "isApproved": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "CreateMemberTypePropertyTypeContainerRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PropertyTypeContainerModelBaseModel" - } - ], - "additionalProperties": false - }, - "CreateMemberTypePropertyTypeRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/MemberTypePropertyTypeModelBaseModel" - } - ], - "additionalProperties": false - }, - "CreateMemberTypeRequestModel": { - "required": [ - "compositions" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/CreateContentTypeForMemberTypeRequestModel" - } - ], - "properties": { "compositions": { "type": "array", "items": { @@ -36593,76 +41401,251 @@ "additionalProperties": false }, "CreatePackageRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PackageModelBaseModel" - } + "required": [ + "contentLoadChildNodes", + "dataTypes", + "dictionaryItems", + "documentTypes", + "languages", + "mediaIds", + "mediaLoadChildNodes", + "mediaTypes", + "name", + "partialViews", + "scripts", + "stylesheets", + "templates" ], + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "contentNodeId": { + "type": "string", + "nullable": true + }, + "contentLoadChildNodes": { + "type": "boolean" + }, + "mediaIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + }, + "mediaLoadChildNodes": { + "type": "boolean" + }, + "documentTypes": { + "type": "array", + "items": { + "type": "string" + } + }, + "mediaTypes": { + "type": "array", + "items": { + "type": "string" + } + }, + "dataTypes": { + "type": "array", + "items": { + "type": "string" + } + }, + "templates": { + "type": "array", + "items": { + "type": "string" + } + }, + "partialViews": { + "type": "array", + "items": { + "type": "string" + } + }, + "stylesheets": { + "type": "array", + "items": { + "type": "string" + } + }, + "scripts": { + "type": "array", + "items": { + "type": "string" + } + }, + "languages": { + "type": "array", + "items": { + "type": "string" + } + }, + "dictionaryItems": { + "type": "array", + "items": { + "type": "string" + } + } + }, "additionalProperties": false }, "CreatePartialViewFolderRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemCreateRequestModelBaseModel" - } + "required": [ + "name" ], + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/FileSystemFolderModel" + } + ], + "nullable": true + } + }, "additionalProperties": false }, "CreatePartialViewRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemFileCreateRequestModelBaseModel" - } + "required": [ + "content", + "name" ], + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/FileSystemFolderModel" + } + ], + "nullable": true + }, + "content": { + "type": "string" + } + }, "additionalProperties": false }, "CreateScriptFolderRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemCreateRequestModelBaseModel" - } + "required": [ + "name" ], + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/FileSystemFolderModel" + } + ], + "nullable": true + } + }, "additionalProperties": false }, "CreateScriptRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemFileCreateRequestModelBaseModel" - } + "required": [ + "content", + "name" ], + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/FileSystemFolderModel" + } + ], + "nullable": true + }, + "content": { + "type": "string" + } + }, "additionalProperties": false }, "CreateStylesheetFolderRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemCreateRequestModelBaseModel" - } + "required": [ + "name" ], + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/FileSystemFolderModel" + } + ], + "nullable": true + } + }, "additionalProperties": false }, "CreateStylesheetRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemFileCreateRequestModelBaseModel" - } + "required": [ + "content", + "name" ], + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/FileSystemFolderModel" + } + ], + "nullable": true + }, + "content": { + "type": "string" + } + }, "additionalProperties": false }, "CreateTemplateRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/TemplateModelBaseModel" - } + "required": [ + "alias", + "name" ], + "type": "object", "properties": { + "name": { + "minLength": 1, + "type": "string" + }, + "alias": { + "minLength": 1, + "type": "string" + }, + "content": { + "type": "string", + "nullable": true + }, "id": { "type": "string", "format": "uuid", @@ -36672,22 +41655,112 @@ "additionalProperties": false }, "CreateUserGroupRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/UserGroupBaseModel" - } + "required": [ + "documentRootAccess", + "fallbackPermissions", + "hasAccessToAllLanguages", + "languages", + "mediaRootAccess", + "name", + "permissions", + "sections" ], + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "icon": { + "type": "string", + "nullable": true + }, + "sections": { + "type": "array", + "items": { + "type": "string" + } + }, + "languages": { + "type": "array", + "items": { + "type": "string" + } + }, + "hasAccessToAllLanguages": { + "type": "boolean" + }, + "documentStartNode": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "documentRootAccess": { + "type": "boolean" + }, + "mediaStartNode": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "mediaRootAccess": { + "type": "boolean" + }, + "fallbackPermissions": { + "uniqueItems": true, + "type": "array", + "items": { + "type": "string" + } + }, + "permissions": { + "uniqueItems": true, + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentPermissionPresentationModel" + }, + { + "$ref": "#/components/schemas/UnknownTypePermissionPresentationModel" + } + ] + } + } + }, "additionalProperties": false }, "CreateUserRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/UserPresentationBaseModel" - } + "required": [ + "email", + "name", + "userGroupIds", + "userName" ], + "type": "object", "properties": { + "email": { + "type": "string" + }, + "userName": { + "type": "string" + }, + "name": { + "type": "string" + }, + "userGroupIds": { + "uniqueItems": true, + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + }, "id": { "type": "string", "format": "uuid", @@ -36698,15 +41771,34 @@ }, "CreateWebhookRequestModel": { "required": [ - "events" + "contentTypeKeys", + "enabled", + "events", + "headers", + "url" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/WebhookModelBaseModel" - } - ], "properties": { + "enabled": { + "type": "boolean" + }, + "url": { + "minLength": 1, + "type": "string" + }, + "contentTypeKeys": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + }, + "headers": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "id": { "type": "string", "format": "uuid", @@ -36895,15 +41987,19 @@ }, "DataTypeItemResponseModel": { "required": [ - "isDeletable" + "id", + "isDeletable", + "name" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/NamedItemResponseModelBaseModel" - } - ], "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string" + }, "editorUiAlias": { "type": "string", "nullable": true @@ -36914,39 +42010,6 @@ }, "additionalProperties": false }, - "DataTypeModelBaseModel": { - "required": [ - "editorAlias", - "name", - "values" - ], - "type": "object", - "properties": { - "name": { - "minLength": 1, - "type": "string" - }, - "editorAlias": { - "minLength": 1, - "type": "string" - }, - "editorUiAlias": { - "type": "string", - "nullable": true - }, - "values": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/DataTypePropertyPresentationModel" - } - ] - } - } - }, - "additionalProperties": false - }, "DataTypePropertyPresentationModel": { "required": [ "alias" @@ -37009,16 +42072,36 @@ "DataTypeResponseModel": { "required": [ "canIgnoreStartNodes", + "editorAlias", "id", - "isDeletable" + "isDeletable", + "name", + "values" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/DataTypeModelBaseModel" - } - ], "properties": { + "name": { + "minLength": 1, + "type": "string" + }, + "editorAlias": { + "minLength": 1, + "type": "string" + }, + "editorUiAlias": { + "type": "string", + "nullable": true + }, + "values": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DataTypePropertyPresentationModel" + } + ] + } + }, "id": { "type": "string", "format": "uuid" @@ -37034,15 +42117,35 @@ }, "DataTypeTreeItemResponseModel": { "required": [ - "isDeletable" + "hasChildren", + "id", + "isDeletable", + "isFolder", + "name" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FolderTreeItemResponseModel" - } - ], "properties": { + "hasChildren": { + "type": "boolean" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "name": { + "type": "string" + }, + "isFolder": { + "type": "boolean" + }, "editorUiAlias": { "type": "string", "nullable": true @@ -37053,7 +42156,7 @@ }, "additionalProperties": false }, - "DatabaseInstallPresentationModel": { + "DatabaseInstallRequestModel": { "required": [ "id", "providerName", @@ -37099,15 +42202,6 @@ }, "additionalProperties": false }, - "DatabaseInstallRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/DatabaseInstallPresentationModel" - } - ], - "additionalProperties": false - }, "DatabaseSettingsPresentationModel": { "required": [ "defaultDatabaseName", @@ -37253,16 +42347,25 @@ "additionalProperties": false }, "DictionaryItemItemResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/NamedItemResponseModelBaseModel" - } + "required": [ + "id", + "name" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string" + } + }, "additionalProperties": false }, - "DictionaryItemModelBaseModel": { + "DictionaryItemResponseModel": { "required": [ + "id", "name", "translations" ], @@ -37281,21 +42384,7 @@ } ] } - } - }, - "additionalProperties": false - }, - "DictionaryItemResponseModel": { - "required": [ - "id" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/DictionaryItemModelBaseModel" - } - ], - "properties": { + }, "id": { "type": "string", "format": "uuid" @@ -37379,15 +42468,19 @@ }, "DocumentBlueprintItemResponseModel": { "required": [ - "documentType" + "documentType", + "id", + "name" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/NamedItemResponseModelBaseModel" - } - ], "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string" + }, "documentType": { "oneOf": [ { @@ -37399,22 +42492,78 @@ "additionalProperties": false }, "DocumentBlueprintResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentForDocumentResponseModel" - } + "required": [ + "documentType", + "id", + "values", + "variants" ], + "type": "object", + "properties": { + "values": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentValueModel" + } + ] + } + }, + "variants": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentVariantResponseModel" + } + ] + } + }, + "id": { + "type": "string", + "format": "uuid" + }, + "documentType": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentTypeReferenceResponseModel" + } + ] + } + }, "additionalProperties": false }, "DocumentBlueprintTreeItemResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FolderTreeItemResponseModel" - } + "required": [ + "hasChildren", + "id", + "isFolder", + "name" ], + "type": "object", "properties": { + "hasChildren": { + "type": "boolean" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "name": { + "type": "string" + }, + "isFolder": { + "type": "boolean" + }, "documentType": { "oneOf": [ { @@ -37428,15 +42577,46 @@ }, "DocumentCollectionResponseModel": { "required": [ - "documentType" + "documentType", + "id", + "sortOrder", + "values", + "variants" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentCollectionResponseModelBaseDocumentValueModelDocumentVariantResponseModel" - } - ], "properties": { + "values": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentValueModel" + } + ] + } + }, + "variants": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentVariantResponseModel" + } + ] + } + }, + "id": { + "type": "string", + "format": "uuid" + }, + "creator": { + "type": "string", + "nullable": true + }, + "sortOrder": { + "type": "integer", + "format": "int32" + }, "documentType": { "oneOf": [ { @@ -37490,17 +42670,17 @@ "DocumentItemResponseModel": { "required": [ "documentType", + "id", "isProtected", "isTrashed", "variants" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ItemResponseModelBaseModel" - } - ], "properties": { + "id": { + "type": "string", + "format": "uuid" + }, "isTrashed": { "type": "boolean" }, @@ -37580,15 +42760,27 @@ "DocumentRecycleBinItemResponseModel": { "required": [ "documentType", + "hasChildren", + "id", "variants" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/RecycleBinItemResponseModelBaseModel" - } - ], "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "hasChildren": { + "type": "boolean" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ItemReferenceByIdResponseModel" + } + ], + "nullable": true + }, "documentType": { "oneOf": [ { @@ -37640,16 +42832,46 @@ }, "DocumentResponseModel": { "required": [ + "documentType", + "id", "isTrashed", - "urls" + "urls", + "values", + "variants" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentForDocumentResponseModel" - } - ], "properties": { + "values": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentValueModel" + } + ] + } + }, + "variants": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentVariantResponseModel" + } + ] + } + }, + "id": { + "type": "string", + "format": "uuid" + }, + "documentType": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentTypeReferenceResponseModel" + } + ] + }, "urls": { "type": "array", "items": { @@ -37677,16 +42899,36 @@ "DocumentTreeItemResponseModel": { "required": [ "documentType", + "hasChildren", + "id", "isProtected", + "isTrashed", + "noAccess", "variants" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentTreeItemResponseModel" - } - ], "properties": { + "hasChildren": { + "type": "boolean" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "noAccess": { + "type": "boolean" + }, + "isTrashed": { + "type": "boolean" + }, + "id": { + "type": "string", + "format": "uuid" + }, "isProtected": { "type": "boolean" }, @@ -37711,21 +42953,46 @@ "additionalProperties": false }, "DocumentTypeCleanupModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentTypeCleanupBaseModel" - } + "required": [ + "preventCleanup" ], + "type": "object", + "properties": { + "preventCleanup": { + "type": "boolean" + }, + "keepAllVersionsNewerThanDays": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "keepLatestVersionPerDayForDays": { + "type": "integer", + "format": "int32", + "nullable": true + } + }, "additionalProperties": false }, "DocumentTypeCollectionReferenceResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentTypeCollectionReferenceResponseModelBaseModel" - } + "required": [ + "alias", + "icon", + "id" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "alias": { + "type": "string" + }, + "icon": { + "type": "string" + } + }, "additionalProperties": false }, "DocumentTypeCompositionModel": { @@ -37750,15 +43017,30 @@ }, "DocumentTypeCompositionRequestModel": { "required": [ + "currentCompositeIds", + "currentPropertyAliases", "isElement" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentTypeCompositionRequestModelBaseModel" - } - ], "properties": { + "id": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "currentPropertyAliases": { + "type": "array", + "items": { + "type": "string" + } + }, + "currentCompositeIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + }, "isElement": { "type": "boolean" } @@ -37766,12 +43048,24 @@ "additionalProperties": false }, "DocumentTypeCompositionResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentTypeCompositionResponseModelBaseModel" - } + "required": [ + "icon", + "id", + "name" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string" + }, + "icon": { + "type": "string" + } + }, "additionalProperties": false }, "DocumentTypeConfigurationResponseModel": { @@ -37796,15 +43090,19 @@ }, "DocumentTypeItemResponseModel": { "required": [ - "isElement" + "id", + "isElement", + "name" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/NamedItemResponseModelBaseModel" - } - ], "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string" + }, "isElement": { "type": "boolean" }, @@ -37816,46 +43114,216 @@ "additionalProperties": false }, "DocumentTypePropertyTypeContainerResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PropertyTypeContainerModelBaseModel" - } + "required": [ + "id", + "sortOrder", + "type" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "type": { + "minLength": 1, + "type": "string" + }, + "sortOrder": { + "type": "integer", + "format": "int32" + } + }, "additionalProperties": false }, "DocumentTypePropertyTypeResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PropertyTypeModelBaseModel" - } + "required": [ + "alias", + "appearance", + "dataType", + "id", + "name", + "sortOrder", + "validation", + "variesByCulture", + "variesBySegment" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "container": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "sortOrder": { + "type": "integer", + "format": "int32" + }, + "alias": { + "minLength": 1, + "type": "string" + }, + "name": { + "minLength": 1, + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "dataType": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ] + }, + "variesByCulture": { + "type": "boolean" + }, + "variesBySegment": { + "type": "boolean" + }, + "validation": { + "oneOf": [ + { + "$ref": "#/components/schemas/PropertyTypeValidationModel" + } + ] + }, + "appearance": { + "oneOf": [ + { + "$ref": "#/components/schemas/PropertyTypeAppearanceModel" + } + ] + } + }, "additionalProperties": false }, "DocumentTypeReferenceResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentTypeReferenceResponseModelBaseModel" - } + "required": [ + "icon", + "id" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "icon": { + "type": "string" + }, + "collection": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + } + }, "additionalProperties": false }, "DocumentTypeResponseModel": { "required": [ + "alias", + "allowedAsRoot", "allowedDocumentTypes", "allowedTemplates", "cleanup", - "compositions" + "compositions", + "containers", + "icon", + "id", + "isElement", + "name", + "properties", + "variesByCulture", + "variesBySegment" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentTypeForDocumentTypeResponseModel" - } - ], "properties": { + "alias": { + "minLength": 1, + "type": "string" + }, + "name": { + "minLength": 1, + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "icon": { + "minLength": 1, + "type": "string" + }, + "allowedAsRoot": { + "type": "boolean" + }, + "variesByCulture": { + "type": "boolean" + }, + "variesBySegment": { + "type": "boolean" + }, + "collection": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "isElement": { + "type": "boolean" + }, + "properties": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentTypePropertyTypeResponseModel" + } + ] + } + }, + "containers": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentTypePropertyTypeContainerResponseModel" + } + ] + } + }, + "id": { + "type": "string", + "format": "uuid" + }, "allowedTemplates": { "type": "array", "items": { @@ -37927,16 +43395,36 @@ }, "DocumentTypeTreeItemResponseModel": { "required": [ + "hasChildren", "icon", - "isElement" + "id", + "isElement", + "isFolder", + "name" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FolderTreeItemResponseModel" - } - ], "properties": { + "hasChildren": { + "type": "boolean" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "name": { + "type": "string" + }, + "isFolder": { + "type": "boolean" + }, "isElement": { "type": "boolean" }, @@ -37947,34 +43435,59 @@ "additionalProperties": false }, "DocumentUrlInfoModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentUrlInfoBaseModel" - } + "required": [ + "url" ], + "type": "object", + "properties": { + "culture": { + "type": "string", + "nullable": true + }, + "url": { + "type": "string" + } + }, "additionalProperties": false }, "DocumentValueModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ValueModelBaseModel" - } + "required": [ + "alias" ], + "type": "object", + "properties": { + "culture": { + "type": "string", + "nullable": true + }, + "segment": { + "type": "string", + "nullable": true + }, + "alias": { + "minLength": 1, + "type": "string" + }, + "value": { + "nullable": true + } + }, "additionalProperties": false }, "DocumentVariantItemResponseModel": { "required": [ + "name", "state" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/VariantItemResponseModelBaseModel" - } - ], "properties": { + "name": { + "type": "string" + }, + "culture": { + "type": "string", + "nullable": true + }, "state": { "$ref": "#/components/schemas/DocumentVariantStateModel" } @@ -37982,25 +43495,55 @@ "additionalProperties": false }, "DocumentVariantRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/VariantModelBaseModel" - } + "required": [ + "name" ], + "type": "object", + "properties": { + "culture": { + "type": "string", + "nullable": true + }, + "segment": { + "type": "string", + "nullable": true + }, + "name": { + "minLength": 1, + "type": "string" + } + }, "additionalProperties": false }, "DocumentVariantResponseModel": { "required": [ - "state" + "createDate", + "name", + "state", + "updateDate" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/VariantResponseModelBaseModel" - } - ], "properties": { + "culture": { + "type": "string", + "nullable": true + }, + "segment": { + "type": "string", + "nullable": true + }, + "name": { + "minLength": 1, + "type": "string" + }, + "createDate": { + "type": "string", + "format": "date-time" + }, + "updateDate": { + "type": "string", + "format": "date-time" + }, "state": { "$ref": "#/components/schemas/DocumentVariantStateModel" }, @@ -38076,13 +43619,45 @@ "additionalProperties": false }, "DocumentVersionResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentForDocumentResponseModel" - } + "required": [ + "documentType", + "id", + "values", + "variants" ], + "type": "object", "properties": { + "values": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentValueModel" + } + ] + } + }, + "variants": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentVariantResponseModel" + } + ] + } + }, + "id": { + "type": "string", + "format": "uuid" + }, + "documentType": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentTypeReferenceResponseModel" + } + ] + }, "document": { "oneOf": [ { @@ -38110,7 +43685,7 @@ }, "additionalProperties": false }, - "DomainsPresentationModelBaseModel": { + "DomainsResponseModel": { "required": [ "domains" ], @@ -38133,15 +43708,6 @@ }, "additionalProperties": false }, - "DomainsResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/DomainsPresentationModelBaseModel" - } - ], - "additionalProperties": false - }, "DynamicRootContextRequestModel": { "required": [ "parent" @@ -38308,32 +43874,6 @@ }, "additionalProperties": false }, - "EntityTreeItemResponseModel": { - "required": [ - "id" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/TreeItemPresentationModel" - } - ], - "properties": { - "id": { - "type": "string", - "format": "uuid" - }, - "parent": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ], - "nullable": true - } - }, - "additionalProperties": false - }, "EventMessageTypeModel": { "enum": [ "Default", @@ -38363,128 +43903,7 @@ }, "additionalProperties": false }, - "FileSystemCreateRequestModelBaseModel": { - "required": [ - "name" - ], - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "parent": { - "oneOf": [ - { - "$ref": "#/components/schemas/FileSystemFolderModel" - } - ], - "nullable": true - } - }, - "additionalProperties": false - }, - "FileSystemFileCreateRequestModelBaseModel": { - "required": [ - "content", - "name" - ], - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "parent": { - "oneOf": [ - { - "$ref": "#/components/schemas/FileSystemFolderModel" - } - ], - "nullable": true - }, - "content": { - "type": "string" - } - }, - "additionalProperties": false - }, - "FileSystemFileResponseModelBaseModel": { - "required": [ - "content", - "name", - "path" - ], - "type": "object", - "properties": { - "path": { - "type": "string" - }, - "name": { - "type": "string" - }, - "parent": { - "oneOf": [ - { - "$ref": "#/components/schemas/FileSystemFolderModel" - } - ], - "nullable": true - }, - "content": { - "type": "string" - } - }, - "additionalProperties": false - }, - "FileSystemFileUpdateRequestModelBaseModel": { - "required": [ - "content" - ], - "type": "object", - "properties": { - "content": { - "type": "string" - } - }, - "additionalProperties": false - }, "FileSystemFolderModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemItemViewModelBaseModel" - } - ], - "additionalProperties": false - }, - "FileSystemItemResponseModelBaseModel": { - "required": [ - "isFolder", - "name", - "path" - ], - "type": "object", - "properties": { - "path": { - "type": "string" - }, - "name": { - "type": "string" - }, - "parent": { - "oneOf": [ - { - "$ref": "#/components/schemas/FileSystemFolderModel" - } - ], - "nullable": true - }, - "isFolder": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "FileSystemItemViewModelBaseModel": { "required": [ "path" ], @@ -38496,55 +43915,18 @@ }, "additionalProperties": false }, - "FileSystemRenameRequestModelBaseModel": { - "required": [ - "name" - ], - "type": "object", - "properties": { - "name": { - "type": "string" - } - }, - "additionalProperties": false - }, - "FileSystemResponseModelBaseModel": { - "required": [ - "name", - "path" - ], - "type": "object", - "properties": { - "path": { - "type": "string" - }, - "name": { - "type": "string" - }, - "parent": { - "oneOf": [ - { - "$ref": "#/components/schemas/FileSystemFolderModel" - } - ], - "nullable": true - } - }, - "additionalProperties": false - }, "FileSystemTreeItemPresentationModel": { "required": [ + "hasChildren", "isFolder", "name", "path" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/TreeItemPresentationModel" - } - ], "properties": { + "hasChildren": { + "type": "boolean" + }, "name": { "type": "string" }, @@ -38565,8 +43947,9 @@ }, "additionalProperties": false }, - "FolderModelBaseModel": { + "FolderResponseModel": { "required": [ + "id", "name" ], "type": "object", @@ -38574,21 +43957,7 @@ "name": { "minLength": 1, "type": "string" - } - }, - "additionalProperties": false - }, - "FolderResponseModel": { - "required": [ - "id" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FolderModelBaseModel" - } - ], - "properties": { + }, "id": { "type": "string", "format": "uuid" @@ -38596,23 +43965,6 @@ }, "additionalProperties": false }, - "FolderTreeItemResponseModel": { - "required": [ - "isFolder" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/NamedEntityTreeItemResponseModel" - } - ], - "properties": { - "isFolder": { - "type": "boolean" - } - }, - "additionalProperties": false - }, "HealthCheckActionRequestModel": { "required": [ "healthCheck", @@ -38657,29 +44009,16 @@ }, "additionalProperties": false }, - "HealthCheckGroupPresentationBaseModel": { + "HealthCheckGroupPresentationModel": { "required": [ + "checks", "name" ], "type": "object", "properties": { "name": { "type": "string" - } - }, - "additionalProperties": false - }, - "HealthCheckGroupPresentationModel": { - "required": [ - "checks" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/HealthCheckGroupPresentationBaseModel" - } - ], - "properties": { + }, "checks": { "type": "array", "items": { @@ -38694,12 +44033,15 @@ "additionalProperties": false }, "HealthCheckGroupResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/HealthCheckGroupPresentationBaseModel" - } + "required": [ + "name" ], + "type": "object", + "properties": { + "name": { + "type": "string" + } + }, "additionalProperties": false }, "HealthCheckGroupWithResultResponseModel": { @@ -38723,34 +44065,21 @@ }, "HealthCheckModel": { "required": [ + "id", "name" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/HealthCheckModelBaseModel" - } - ], - "properties": { - "name": { - "type": "string" - }, - "description": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "HealthCheckModelBaseModel": { - "required": [ - "id" - ], - "type": "object", "properties": { "id": { "type": "string", "format": "uuid" + }, + "name": { + "type": "string" + }, + "description": { + "type": "string", + "nullable": true } }, "additionalProperties": false @@ -38787,13 +44116,15 @@ "additionalProperties": false }, "HealthCheckWithResultPresentationModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/HealthCheckModelBaseModel" - } + "required": [ + "id" ], + "type": "object", "properties": { + "id": { + "type": "string", + "format": "uuid" + }, "results": { "type": "array", "items": { @@ -38913,15 +44244,12 @@ "user": { "oneOf": [ { - "$ref": "#/components/schemas/UserInstallPresentationModel" + "$ref": "#/components/schemas/UserInstallRequestModel" } ] }, "database": { "oneOf": [ - { - "$ref": "#/components/schemas/DatabaseInstallPresentationModel" - }, { "$ref": "#/components/schemas/DatabaseInstallRequestModel" } @@ -38961,13 +44289,36 @@ "additionalProperties": false }, "InviteUserRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/CreateUserRequestModel" - } + "required": [ + "email", + "name", + "userGroupIds", + "userName" ], + "type": "object", "properties": { + "email": { + "type": "string" + }, + "userName": { + "type": "string" + }, + "name": { + "type": "string" + }, + "userGroupIds": { + "uniqueItems": true, + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + }, + "id": { + "type": "string", + "format": "uuid", + "nullable": true + }, "message": { "type": "string", "nullable": true @@ -38988,19 +44339,6 @@ }, "additionalProperties": false }, - "ItemResponseModelBaseModel": { - "required": [ - "id" - ], - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid" - } - }, - "additionalProperties": false - }, "ItemSortingRequestModel": { "required": [ "id", @@ -39037,10 +44375,11 @@ }, "additionalProperties": false }, - "LanguageModelBaseModel": { + "LanguageResponseModel": { "required": [ "isDefault", "isMandatory", + "isoCode", "name" ], "type": "object", @@ -39058,21 +44397,7 @@ "fallbackIsoCode": { "type": "string", "nullable": true - } - }, - "additionalProperties": false - }, - "LanguageResponseModel": { - "required": [ - "isoCode" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/LanguageModelBaseModel" - } - ], - "properties": { + }, "isoCode": { "minLength": 1, "type": "string" @@ -39250,15 +44575,46 @@ }, "MediaCollectionResponseModel": { "required": [ - "mediaType" + "id", + "mediaType", + "sortOrder", + "values", + "variants" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentCollectionResponseModelBaseMediaValueModelMediaVariantResponseModel" - } - ], "properties": { + "values": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MediaValueModel" + } + ] + } + }, + "variants": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MediaVariantResponseModel" + } + ] + } + }, + "id": { + "type": "string", + "format": "uuid" + }, + "creator": { + "type": "string", + "nullable": true + }, + "sortOrder": { + "type": "integer", + "format": "int32" + }, "mediaType": { "oneOf": [ { @@ -39299,17 +44655,17 @@ }, "MediaItemResponseModel": { "required": [ + "id", "isTrashed", "mediaType", "variants" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ItemResponseModelBaseModel" - } - ], "properties": { + "id": { + "type": "string", + "format": "uuid" + }, "isTrashed": { "type": "boolean" }, @@ -39335,16 +44691,28 @@ }, "MediaRecycleBinItemResponseModel": { "required": [ + "hasChildren", + "id", "mediaType", "variants" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/RecycleBinItemResponseModelBaseModel" - } - ], "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "hasChildren": { + "type": "boolean" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ItemReferenceByIdResponseModel" + } + ], + "nullable": true + }, "mediaType": { "oneOf": [ { @@ -39392,17 +44760,39 @@ }, "MediaResponseModel": { "required": [ + "id", "isTrashed", "mediaType", - "urls" + "urls", + "values", + "variants" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentForMediaResponseModel" - } - ], "properties": { + "values": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MediaValueModel" + } + ] + } + }, + "variants": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MediaVariantResponseModel" + } + ] + } + }, + "id": { + "type": "string", + "format": "uuid" + }, "urls": { "type": "array", "items": { @@ -39428,16 +44818,36 @@ }, "MediaTreeItemResponseModel": { "required": [ + "hasChildren", + "id", + "isTrashed", "mediaType", + "noAccess", "variants" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentTreeItemResponseModel" - } - ], "properties": { + "hasChildren": { + "type": "boolean" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "noAccess": { + "type": "boolean" + }, + "isTrashed": { + "type": "boolean" + }, + "id": { + "type": "string", + "format": "uuid" + }, "mediaType": { "oneOf": [ { @@ -39459,12 +44869,24 @@ "additionalProperties": false }, "MediaTypeCollectionReferenceResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentTypeCollectionReferenceResponseModelBaseModel" - } + "required": [ + "alias", + "icon", + "id" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "alias": { + "type": "string" + }, + "icon": { + "type": "string" + } + }, "additionalProperties": false }, "MediaTypeCompositionModel": { @@ -39488,31 +44910,68 @@ "additionalProperties": false }, "MediaTypeCompositionRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentTypeCompositionRequestModelBaseModel" - } + "required": [ + "currentCompositeIds", + "currentPropertyAliases" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "currentPropertyAliases": { + "type": "array", + "items": { + "type": "string" + } + }, + "currentCompositeIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, "additionalProperties": false }, "MediaTypeCompositionResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentTypeCompositionResponseModelBaseModel" - } + "required": [ + "icon", + "id", + "name" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string" + }, + "icon": { + "type": "string" + } + }, "additionalProperties": false }, "MediaTypeItemResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/NamedItemResponseModelBaseModel" - } + "required": [ + "id", + "name" ], + "type": "object", "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string" + }, "icon": { "type": "string", "nullable": true @@ -39521,44 +44980,214 @@ "additionalProperties": false }, "MediaTypePropertyTypeContainerResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PropertyTypeContainerModelBaseModel" - } + "required": [ + "id", + "sortOrder", + "type" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "type": { + "minLength": 1, + "type": "string" + }, + "sortOrder": { + "type": "integer", + "format": "int32" + } + }, "additionalProperties": false }, "MediaTypePropertyTypeResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PropertyTypeModelBaseModel" - } + "required": [ + "alias", + "appearance", + "dataType", + "id", + "name", + "sortOrder", + "validation", + "variesByCulture", + "variesBySegment" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "container": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "sortOrder": { + "type": "integer", + "format": "int32" + }, + "alias": { + "minLength": 1, + "type": "string" + }, + "name": { + "minLength": 1, + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "dataType": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ] + }, + "variesByCulture": { + "type": "boolean" + }, + "variesBySegment": { + "type": "boolean" + }, + "validation": { + "oneOf": [ + { + "$ref": "#/components/schemas/PropertyTypeValidationModel" + } + ] + }, + "appearance": { + "oneOf": [ + { + "$ref": "#/components/schemas/PropertyTypeAppearanceModel" + } + ] + } + }, "additionalProperties": false }, "MediaTypeReferenceResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentTypeReferenceResponseModelBaseModel" - } + "required": [ + "icon", + "id" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "icon": { + "type": "string" + }, + "collection": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + } + }, "additionalProperties": false }, "MediaTypeResponseModel": { "required": [ + "alias", + "allowedAsRoot", "allowedMediaTypes", - "compositions" + "compositions", + "containers", + "icon", + "id", + "isElement", + "name", + "properties", + "variesByCulture", + "variesBySegment" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentTypeForMediaTypeResponseModel" - } - ], "properties": { + "alias": { + "minLength": 1, + "type": "string" + }, + "name": { + "minLength": 1, + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "icon": { + "minLength": 1, + "type": "string" + }, + "allowedAsRoot": { + "type": "boolean" + }, + "variesByCulture": { + "type": "boolean" + }, + "variesBySegment": { + "type": "boolean" + }, + "collection": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "isElement": { + "type": "boolean" + }, + "properties": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MediaTypePropertyTypeResponseModel" + } + ] + } + }, + "containers": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MediaTypePropertyTypeContainerResponseModel" + } + ] + } + }, + "id": { + "type": "string", + "format": "uuid" + }, "allowedMediaTypes": { "type": "array", "items": { @@ -39605,15 +45234,35 @@ }, "MediaTypeTreeItemResponseModel": { "required": [ - "icon" + "hasChildren", + "icon", + "id", + "isFolder", + "name" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FolderTreeItemResponseModel" - } - ], "properties": { + "hasChildren": { + "type": "boolean" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "name": { + "type": "string" + }, + "isFolder": { + "type": "boolean" + }, "icon": { "type": "string" } @@ -39621,39 +45270,95 @@ "additionalProperties": false }, "MediaUrlInfoModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentUrlInfoBaseModel" - } + "required": [ + "url" ], + "type": "object", + "properties": { + "culture": { + "type": "string", + "nullable": true + }, + "url": { + "type": "string" + } + }, "additionalProperties": false }, "MediaValueModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ValueModelBaseModel" - } + "required": [ + "alias" ], + "type": "object", + "properties": { + "culture": { + "type": "string", + "nullable": true + }, + "segment": { + "type": "string", + "nullable": true + }, + "alias": { + "minLength": 1, + "type": "string" + }, + "value": { + "nullable": true + } + }, "additionalProperties": false }, "MediaVariantRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/VariantModelBaseModel" - } + "required": [ + "name" ], + "type": "object", + "properties": { + "culture": { + "type": "string", + "nullable": true + }, + "segment": { + "type": "string", + "nullable": true + }, + "name": { + "minLength": 1, + "type": "string" + } + }, "additionalProperties": false }, "MediaVariantResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/VariantResponseModelBaseModel" - } + "required": [ + "createDate", + "name", + "updateDate" ], + "type": "object", + "properties": { + "culture": { + "type": "string", + "nullable": true + }, + "segment": { + "type": "string", + "nullable": true + }, + "name": { + "minLength": 1, + "type": "string" + }, + "createDate": { + "type": "string", + "format": "date-time" + }, + "updateDate": { + "type": "string", + "format": "date-time" + } + }, "additionalProperties": false }, "MemberConfigurationResponseModel": { @@ -39673,20 +45378,16 @@ "additionalProperties": false }, "MemberGroupItemResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/NamedItemResponseModelBaseModel" - } - ], - "additionalProperties": false - }, - "MemberGroupPresentationBaseModel": { "required": [ + "id", "name" ], "type": "object", "properties": { + "id": { + "type": "string", + "format": "uuid" + }, "name": { "type": "string" } @@ -39695,15 +45396,14 @@ }, "MemberGroupResponseModel": { "required": [ - "id" + "id", + "name" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/MemberGroupPresentationBaseModel" - } - ], "properties": { + "name": { + "type": "string" + }, "id": { "type": "string", "format": "uuid" @@ -39713,16 +45413,16 @@ }, "MemberItemResponseModel": { "required": [ + "id", "memberType", "variants" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ItemResponseModelBaseModel" - } - ], "properties": { + "id": { + "type": "string", + "format": "uuid" + }, "memberType": { "oneOf": [ { @@ -39748,19 +45448,41 @@ "email", "failedPasswordAttempts", "groups", + "id", "isApproved", "isLockedOut", "isTwoFactorEnabled", "memberType", - "username" + "username", + "values", + "variants" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentForMemberResponseModel" - } - ], "properties": { + "values": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MemberValueModel" + } + ] + } + }, + "variants": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MemberVariantResponseModel" + } + ] + } + }, + "id": { + "type": "string", + "format": "uuid" + }, "email": { "type": "string" }, @@ -39832,31 +45554,68 @@ "additionalProperties": false }, "MemberTypeCompositionRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentTypeCompositionRequestModelBaseModel" - } + "required": [ + "currentCompositeIds", + "currentPropertyAliases" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "currentPropertyAliases": { + "type": "array", + "items": { + "type": "string" + } + }, + "currentCompositeIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, "additionalProperties": false }, "MemberTypeCompositionResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentTypeCompositionResponseModelBaseModel" - } + "required": [ + "icon", + "id", + "name" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string" + }, + "icon": { + "type": "string" + } + }, "additionalProperties": false }, "MemberTypeItemResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/NamedItemResponseModelBaseModel" - } + "required": [ + "id", + "name" ], + "type": "object", "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string" + }, "icon": { "type": "string", "nullable": true @@ -39865,15 +45624,41 @@ "additionalProperties": false }, "MemberTypePropertyTypeContainerResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PropertyTypeContainerModelBaseModel" - } + "required": [ + "id", + "sortOrder", + "type" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "type": { + "minLength": 1, + "type": "string" + }, + "sortOrder": { + "type": "integer", + "format": "int32" + } + }, "additionalProperties": false }, - "MemberTypePropertyTypeModelBaseModel": { + "MemberTypePropertyTypeResponseModel": { "required": [ "alias", "appearance", @@ -39957,15 +45742,6 @@ }, "additionalProperties": false }, - "MemberTypePropertyTypeResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/MemberTypePropertyTypeModelBaseModel" - } - ], - "additionalProperties": false - }, "MemberTypePropertyTypeVisibilityModel": { "required": [ "memberCanEdit", @@ -39983,25 +45759,106 @@ "additionalProperties": false }, "MemberTypeReferenceResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentTypeReferenceResponseModelBaseModel" - } + "required": [ + "icon", + "id" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "icon": { + "type": "string" + }, + "collection": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + } + }, "additionalProperties": false }, "MemberTypeResponseModel": { "required": [ - "compositions" + "alias", + "allowedAsRoot", + "compositions", + "containers", + "icon", + "id", + "isElement", + "name", + "properties", + "variesByCulture", + "variesBySegment" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ContentTypeForMemberTypeResponseModel" - } - ], "properties": { + "alias": { + "minLength": 1, + "type": "string" + }, + "name": { + "minLength": 1, + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "icon": { + "minLength": 1, + "type": "string" + }, + "allowedAsRoot": { + "type": "boolean" + }, + "variesByCulture": { + "type": "boolean" + }, + "variesBySegment": { + "type": "boolean" + }, + "collection": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "isElement": { + "type": "boolean" + }, + "properties": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MemberTypePropertyTypeResponseModel" + } + ] + } + }, + "containers": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MemberTypePropertyTypeContainerResponseModel" + } + ] + } + }, + "id": { + "type": "string", + "format": "uuid" + }, "compositions": { "type": "array", "items": { @@ -40016,30 +45873,79 @@ "additionalProperties": false }, "MemberValueModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ValueModelBaseModel" - } + "required": [ + "alias" ], + "type": "object", + "properties": { + "culture": { + "type": "string", + "nullable": true + }, + "segment": { + "type": "string", + "nullable": true + }, + "alias": { + "minLength": 1, + "type": "string" + }, + "value": { + "nullable": true + } + }, "additionalProperties": false }, "MemberVariantRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/VariantModelBaseModel" - } + "required": [ + "name" ], + "type": "object", + "properties": { + "culture": { + "type": "string", + "nullable": true + }, + "segment": { + "type": "string", + "nullable": true + }, + "name": { + "minLength": 1, + "type": "string" + } + }, "additionalProperties": false }, "MemberVariantResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/VariantResponseModelBaseModel" - } + "required": [ + "createDate", + "name", + "updateDate" ], + "type": "object", + "properties": { + "culture": { + "type": "string", + "nullable": true + }, + "segment": { + "type": "string", + "nullable": true + }, + "name": { + "minLength": 1, + "type": "string" + }, + "createDate": { + "type": "string", + "format": "date-time" + }, + "updateDate": { + "type": "string", + "format": "date-time" + } + }, "additionalProperties": false }, "ModelsBuilderResponseModel": { @@ -40187,32 +46093,27 @@ }, "NamedEntityTreeItemResponseModel": { "required": [ - "name" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/EntityTreeItemResponseModel" - } - ], - "properties": { - "name": { - "type": "string" - } - }, - "additionalProperties": false - }, - "NamedItemResponseModelBaseModel": { - "required": [ + "hasChildren", "id", "name" ], "type": "object", "properties": { + "hasChildren": { + "type": "boolean" + }, "id": { "type": "string", "format": "uuid" }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, "name": { "type": "string" } @@ -40260,19 +46161,6 @@ }, "additionalProperties": false }, - "OkResult": { - "required": [ - "statusCode" - ], - "type": "object", - "properties": { - "statusCode": { - "type": "integer", - "format": "int32" - } - }, - "additionalProperties": false - }, "OperatorModel": { "enum": [ "Equals", @@ -40319,76 +46207,18 @@ "additionalProperties": false }, "PackageDefinitionResponseModel": { - "required": [ - "id", - "packagePath" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PackageModelBaseModel" - } - ], - "properties": { - "id": { - "type": "string", - "format": "uuid" - }, - "packagePath": { - "type": "string" - } - }, - "additionalProperties": false - }, - "PackageManifestResponseModel": { - "required": [ - "extensions", - "name" - ], - "type": "object", - "properties": { - "name": { - "minLength": 1, - "type": "string" - }, - "version": { - "type": "string", - "nullable": true - }, - "extensions": { - "type": "array", - "items": { } - } - }, - "additionalProperties": false - }, - "PackageMigrationStatusResponseModel": { - "required": [ - "hasPendingMigrations", - "packageName" - ], - "type": "object", - "properties": { - "packageName": { - "type": "string" - }, - "hasPendingMigrations": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "PackageModelBaseModel": { "required": [ "contentLoadChildNodes", "dataTypes", "dictionaryItems", "documentTypes", + "id", "languages", "mediaIds", "mediaLoadChildNodes", "mediaTypes", "name", + "packagePath", "partialViews", "scripts", "stylesheets", @@ -40469,6 +46299,51 @@ "items": { "type": "string" } + }, + "id": { + "type": "string", + "format": "uuid" + }, + "packagePath": { + "type": "string" + } + }, + "additionalProperties": false + }, + "PackageManifestResponseModel": { + "required": [ + "extensions", + "name" + ], + "type": "object", + "properties": { + "name": { + "minLength": 1, + "type": "string" + }, + "version": { + "type": "string", + "nullable": true + }, + "extensions": { + "type": "array", + "items": { } + } + }, + "additionalProperties": false + }, + "PackageMigrationStatusResponseModel": { + "required": [ + "hasPendingMigrations", + "packageName" + ], + "type": "object", + "properties": { + "packageName": { + "type": "string" + }, + "hasPendingMigrations": { + "type": "boolean" } }, "additionalProperties": false @@ -41384,24 +47259,6 @@ "oneOf": [ { "$ref": "#/components/schemas/NamedEntityTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DataTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DocumentBlueprintTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/DocumentTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/FolderTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/MediaTypeTreeItemResponseModel" - }, - { - "$ref": "#/components/schemas/RelationTypeTreeItemResponseModel" } ] } @@ -41498,9 +47355,6 @@ "oneOf": [ { "$ref": "#/components/schemas/PartialViewSnippetItemResponseModel" - }, - { - "$ref": "#/components/schemas/PartialViewSnippetResponseModel" } ] } @@ -41522,7 +47376,11 @@ "items": { "type": "array", "items": { - "$ref": "#/components/schemas/ProblemDetails" + "oneOf": [ + { + "$ref": "#/components/schemas/ProblemDetails" + } + ] } } }, @@ -41817,30 +47675,83 @@ "additionalProperties": false }, "PartialViewFolderResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemResponseModelBaseModel" - } + "required": [ + "name", + "path" ], + "type": "object", + "properties": { + "path": { + "type": "string" + }, + "name": { + "type": "string" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/FileSystemFolderModel" + } + ], + "nullable": true + } + }, "additionalProperties": false }, "PartialViewItemResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemItemResponseModelBaseModel" - } + "required": [ + "isFolder", + "name", + "path" ], + "type": "object", + "properties": { + "path": { + "type": "string" + }, + "name": { + "type": "string" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/FileSystemFolderModel" + } + ], + "nullable": true + }, + "isFolder": { + "type": "boolean" + } + }, "additionalProperties": false }, "PartialViewResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemFileResponseModelBaseModel" - } + "required": [ + "content", + "name", + "path" ], + "type": "object", + "properties": { + "path": { + "type": "string" + }, + "name": { + "type": "string" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/FileSystemFolderModel" + } + ], + "nullable": true + }, + "content": { + "type": "string" + } + }, "additionalProperties": false }, "PartialViewSnippetItemResponseModel": { @@ -41861,15 +47772,18 @@ }, "PartialViewSnippetResponseModel": { "required": [ - "content" + "content", + "id", + "name" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PartialViewSnippetItemResponseModel" - } - ], "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, "content": { "type": "string" } @@ -41972,113 +47886,6 @@ }, "additionalProperties": false }, - "PropertyTypeContainerModelBaseModel": { - "required": [ - "id", - "sortOrder", - "type" - ], - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid" - }, - "parent": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ], - "nullable": true - }, - "name": { - "type": "string", - "nullable": true - }, - "type": { - "minLength": 1, - "type": "string" - }, - "sortOrder": { - "type": "integer", - "format": "int32" - } - }, - "additionalProperties": false - }, - "PropertyTypeModelBaseModel": { - "required": [ - "alias", - "appearance", - "dataType", - "id", - "name", - "sortOrder", - "validation", - "variesByCulture", - "variesBySegment" - ], - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid" - }, - "container": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ], - "nullable": true - }, - "sortOrder": { - "type": "integer", - "format": "int32" - }, - "alias": { - "minLength": 1, - "type": "string" - }, - "name": { - "minLength": 1, - "type": "string" - }, - "description": { - "type": "string", - "nullable": true - }, - "dataType": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ] - }, - "variesByCulture": { - "type": "boolean" - }, - "variesBySegment": { - "type": "boolean" - }, - "validation": { - "oneOf": [ - { - "$ref": "#/components/schemas/PropertyTypeValidationModel" - } - ] - }, - "appearance": { - "oneOf": [ - { - "$ref": "#/components/schemas/PropertyTypeAppearanceModel" - } - ] - } - }, - "additionalProperties": false - }, "PropertyTypeValidationModel": { "required": [ "mandatory" @@ -42103,10 +47910,12 @@ }, "additionalProperties": false }, - "PublicAccessBaseModel": { + "PublicAccessRequestModel": { "required": [ "errorDocument", - "loginDocument" + "loginDocument", + "memberGroupNames", + "memberUserNames" ], "type": "object", "properties": { @@ -42123,22 +47932,7 @@ "$ref": "#/components/schemas/ReferenceByIdModel" } ] - } - }, - "additionalProperties": false - }, - "PublicAccessRequestModel": { - "required": [ - "memberGroupNames", - "memberUserNames" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PublicAccessBaseModel" - } - ], - "properties": { + }, "memberUserNames": { "type": "array", "items": { @@ -42154,41 +47948,6 @@ }, "additionalProperties": false }, - "PublicAccessResponseModel": { - "required": [ - "groups", - "members" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PublicAccessBaseModel" - } - ], - "properties": { - "members": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MemberItemResponseModel" - } - ] - } - }, - "groups": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MemberGroupItemResponseModel" - } - ] - } - } - }, - "additionalProperties": false - }, "PublishDocumentRequestModel": { "required": [ "publishSchedules" @@ -42227,31 +47986,6 @@ }, "additionalProperties": false }, - "RecycleBinItemResponseModelBaseModel": { - "required": [ - "hasChildren", - "id" - ], - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid" - }, - "hasChildren": { - "type": "boolean" - }, - "parent": { - "oneOf": [ - { - "$ref": "#/components/schemas/ItemReferenceByIdResponseModel" - } - ], - "nullable": true - } - }, - "additionalProperties": false - }, "RedirectStatusModel": { "enum": [ "Enabled", @@ -42389,8 +48123,30 @@ }, "additionalProperties": false }, - "RelationTypeBaseModel": { + "RelationTypeItemResponseModel": { "required": [ + "id", + "isDeletable", + "name" + ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string" + }, + "isDeletable": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "RelationTypeResponseModel": { + "required": [ + "id", "isBidirectional", "isDependency", "name" @@ -42406,38 +48162,7 @@ }, "isDependency": { "type": "boolean" - } - }, - "additionalProperties": false - }, - "RelationTypeItemResponseModel": { - "required": [ - "isDeletable" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/NamedItemResponseModelBaseModel" - } - ], - "properties": { - "isDeletable": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "RelationTypeResponseModel": { - "required": [ - "id" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/RelationTypeBaseModel" - } - ], - "properties": { + }, "id": { "type": "string", "format": "uuid" @@ -42465,48 +48190,40 @@ }, "additionalProperties": false }, - "RelationTypeTreeItemResponseModel": { + "RenamePartialViewRequestModel": { "required": [ - "isDeletable" + "name" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/NamedEntityTreeItemResponseModel" - } - ], "properties": { - "isDeletable": { - "type": "boolean" + "name": { + "type": "string" } }, "additionalProperties": false }, - "RenamePartialViewRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemRenameRequestModelBaseModel" - } - ], - "additionalProperties": false - }, "RenameScriptRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemRenameRequestModelBaseModel" - } + "required": [ + "name" ], + "type": "object", + "properties": { + "name": { + "type": "string" + } + }, "additionalProperties": false }, "RenameStylesheetRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemRenameRequestModelBaseModel" - } + "required": [ + "name" ], + "type": "object", + "properties": { + "name": { + "type": "string" + } + }, "additionalProperties": false }, "ResendInviteUserRequestModel": { @@ -42544,15 +48261,22 @@ }, "ResetPasswordTokenRequestModel": { "required": [ - "password" + "password", + "resetCode", + "user" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/VerifyResetPasswordTokenRequestModel" - } - ], "properties": { + "user": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ] + }, + "resetCode": { + "type": "string" + }, "password": { "minLength": 1, "type": "string" @@ -42589,7 +48313,7 @@ ], "type": "string" }, - "SavedLogSearchPresenationBaseModel": { + "SavedLogSearchRequestModel": { "required": [ "name", "query" @@ -42605,22 +48329,20 @@ }, "additionalProperties": false }, - "SavedLogSearchRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/SavedLogSearchPresenationBaseModel" - } - ], - "additionalProperties": false - }, "SavedLogSearchResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/SavedLogSearchPresenationBaseModel" - } + "required": [ + "name", + "query" ], + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "query": { + "type": "string" + } + }, "additionalProperties": false }, "ScheduleRequestModel": { @@ -42640,30 +48362,83 @@ "additionalProperties": false }, "ScriptFolderResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemResponseModelBaseModel" - } + "required": [ + "name", + "path" ], + "type": "object", + "properties": { + "path": { + "type": "string" + }, + "name": { + "type": "string" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/FileSystemFolderModel" + } + ], + "nullable": true + } + }, "additionalProperties": false }, "ScriptItemResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemItemResponseModelBaseModel" - } + "required": [ + "isFolder", + "name", + "path" ], + "type": "object", + "properties": { + "path": { + "type": "string" + }, + "name": { + "type": "string" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/FileSystemFolderModel" + } + ], + "nullable": true + }, + "isFolder": { + "type": "boolean" + } + }, "additionalProperties": false }, "ScriptResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemFileResponseModelBaseModel" - } + "required": [ + "content", + "name", + "path" ], + "type": "object", + "properties": { + "path": { + "type": "string" + }, + "name": { + "type": "string" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/FileSystemFolderModel" + } + ], + "nullable": true + }, + "content": { + "type": "string" + } + }, "additionalProperties": false }, "SearchResultResponseModel": { @@ -42730,25 +48505,6 @@ }, "additionalProperties": false }, - "ServerConfigurationBaseModel": { - "required": [ - "items" - ], - "type": "object", - "properties": { - "items": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/ServerConfigurationItemResponseModel" - } - ] - } - } - }, - "additionalProperties": false - }, "ServerConfigurationItemResponseModel": { "required": [ "data", @@ -42814,12 +48570,22 @@ "additionalProperties": false }, "ServerTroubleshootingResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/ServerConfigurationBaseModel" - } + "required": [ + "items" ], + "type": "object", + "properties": { + "items": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/ServerConfigurationItemResponseModel" + } + ] + } + } + }, "additionalProperties": false }, "SetAvatarRequestModel": { @@ -42839,12 +48605,23 @@ "additionalProperties": false }, "SetTourStatusRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/TourStatusModel" - } + "required": [ + "alias", + "completed", + "disabled" ], + "type": "object", + "properties": { + "alias": { + "type": "string" + }, + "completed": { + "type": "boolean" + }, + "disabled": { + "type": "boolean" + } + }, "additionalProperties": false }, "SortingRequestModel": { @@ -42875,12 +48652,31 @@ "additionalProperties": false }, "StaticFileItemResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemItemResponseModelBaseModel" - } + "required": [ + "isFolder", + "name", + "path" ], + "type": "object", + "properties": { + "path": { + "type": "string" + }, + "name": { + "type": "string" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/FileSystemFolderModel" + } + ], + "nullable": true + }, + "isFolder": { + "type": "boolean" + } + }, "additionalProperties": false }, "StatusResultTypeModel": { @@ -42893,30 +48689,83 @@ "type": "string" }, "StylesheetFolderResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemResponseModelBaseModel" - } + "required": [ + "name", + "path" ], + "type": "object", + "properties": { + "path": { + "type": "string" + }, + "name": { + "type": "string" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/FileSystemFolderModel" + } + ], + "nullable": true + } + }, "additionalProperties": false }, "StylesheetItemResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemItemResponseModelBaseModel" - } + "required": [ + "isFolder", + "name", + "path" ], + "type": "object", + "properties": { + "path": { + "type": "string" + }, + "name": { + "type": "string" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/FileSystemFolderModel" + } + ], + "nullable": true + }, + "isFolder": { + "type": "boolean" + } + }, "additionalProperties": false }, "StylesheetResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemFileResponseModelBaseModel" - } + "required": [ + "content", + "name", + "path" ], + "type": "object", + "properties": { + "path": { + "type": "string" + }, + "name": { + "type": "string" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/FileSystemFolderModel" + } + ], + "nullable": true + }, + "content": { + "type": "string" + } + }, "additionalProperties": false }, "TagResponseModel": { @@ -42953,7 +48802,7 @@ ], "type": "string" }, - "TelemetryRepresentationBaseModel": { + "TelemetryRequestModel": { "required": [ "telemetryLevel" ], @@ -42965,22 +48814,16 @@ }, "additionalProperties": false }, - "TelemetryRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/TelemetryRepresentationBaseModel" - } - ], - "additionalProperties": false - }, "TelemetryResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/TelemetryRepresentationBaseModel" - } + "required": [ + "telemetryLevel" ], + "type": "object", + "properties": { + "telemetryLevel": { + "$ref": "#/components/schemas/TelemetryLevelModel" + } + }, "additionalProperties": false }, "TemplateConfigurationResponseModel": { @@ -42996,40 +48839,22 @@ "additionalProperties": false }, "TemplateItemResponseModel": { - "required": [ - "alias" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/NamedItemResponseModelBaseModel" - } - ], - "properties": { - "alias": { - "type": "string" - } - }, - "additionalProperties": false - }, - "TemplateModelBaseModel": { "required": [ "alias", + "id", "name" ], "type": "object", "properties": { + "id": { + "type": "string", + "format": "uuid" + }, "name": { - "minLength": 1, "type": "string" }, "alias": { - "minLength": 1, "type": "string" - }, - "content": { - "type": "string", - "nullable": true } }, "additionalProperties": false @@ -43247,15 +49072,24 @@ }, "TemplateResponseModel": { "required": [ - "id" + "alias", + "id", + "name" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/TemplateModelBaseModel" - } - ], "properties": { + "name": { + "minLength": 1, + "type": "string" + }, + "alias": { + "minLength": 1, + "type": "string" + }, + "content": { + "type": "string", + "nullable": true + }, "id": { "type": "string", "format": "uuid" @@ -43348,7 +49182,7 @@ }, "additionalProperties": false }, - "TrackedReferenceContentTypeModel": { + "TrackedReferenceDocumentTypeModel": { "type": "object", "properties": { "icon": { @@ -43366,32 +49200,20 @@ }, "additionalProperties": false }, - "TrackedReferenceDocumentTypeModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/TrackedReferenceContentTypeModel" - } - ], - "additionalProperties": false - }, "TrackedReferenceMediaTypeModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/TrackedReferenceContentTypeModel" - } - ], - "additionalProperties": false - }, - "TreeItemPresentationModel": { - "required": [ - "hasChildren" - ], "type": "object", "properties": { - "hasChildren": { - "type": "boolean" + "icon": { + "type": "string", + "nullable": true + }, + "alias": { + "type": "string", + "nullable": true + }, + "name": { + "type": "string", + "nullable": true } }, "additionalProperties": false @@ -43457,7 +49279,64 @@ }, "additionalProperties": false }, - "UpdateContentForDocumentRequestModel": { + "UpdateDataTypeRequestModel": { + "required": [ + "editorAlias", + "name", + "values" + ], + "type": "object", + "properties": { + "name": { + "minLength": 1, + "type": "string" + }, + "editorAlias": { + "minLength": 1, + "type": "string" + }, + "editorUiAlias": { + "type": "string", + "nullable": true + }, + "values": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DataTypePropertyPresentationModel" + } + ] + } + } + }, + "additionalProperties": false + }, + "UpdateDictionaryItemRequestModel": { + "required": [ + "name", + "translations" + ], + "type": "object", + "properties": { + "name": { + "minLength": 1, + "type": "string" + }, + "translations": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DictionaryItemTranslationModel" + } + ] + } + } + }, + "additionalProperties": false + }, + "UpdateDocumentBlueprintRequestModel": { "required": [ "values", "variants" @@ -43487,7 +49366,22 @@ }, "additionalProperties": false }, - "UpdateContentForMediaRequestModel": { + "UpdateDocumentNotificationsRequestModel": { + "required": [ + "subscribedActionIds" + ], + "type": "object", + "properties": { + "subscribedActionIds": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "additionalProperties": false + }, + "UpdateDocumentRequestModel": { "required": [ "values", "variants" @@ -43499,7 +49393,7 @@ "items": { "oneOf": [ { - "$ref": "#/components/schemas/MediaValueModel" + "$ref": "#/components/schemas/DocumentValueModel" } ] } @@ -43509,48 +49403,137 @@ "items": { "oneOf": [ { - "$ref": "#/components/schemas/MediaVariantRequestModel" + "$ref": "#/components/schemas/DocumentVariantRequestModel" } ] } + }, + "template": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true } }, "additionalProperties": false }, - "UpdateContentForMemberRequestModel": { + "UpdateDocumentTypePropertyTypeContainerRequestModel": { "required": [ - "values", - "variants" + "id", + "sortOrder", + "type" ], "type": "object", "properties": { - "values": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MemberValueModel" - } - ] - } + "id": { + "type": "string", + "format": "uuid" }, - "variants": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MemberVariantRequestModel" - } - ] - } + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "type": { + "minLength": 1, + "type": "string" + }, + "sortOrder": { + "type": "integer", + "format": "int32" } }, "additionalProperties": false }, - "UpdateContentTypeForDocumentTypeRequestModel": { + "UpdateDocumentTypePropertyTypeRequestModel": { + "required": [ + "alias", + "appearance", + "dataType", + "id", + "name", + "sortOrder", + "validation", + "variesByCulture", + "variesBySegment" + ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "container": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "sortOrder": { + "type": "integer", + "format": "int32" + }, + "alias": { + "minLength": 1, + "type": "string" + }, + "name": { + "minLength": 1, + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "dataType": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ] + }, + "variesByCulture": { + "type": "boolean" + }, + "variesBySegment": { + "type": "boolean" + }, + "validation": { + "oneOf": [ + { + "$ref": "#/components/schemas/PropertyTypeValidationModel" + } + ] + }, + "appearance": { + "oneOf": [ + { + "$ref": "#/components/schemas/PropertyTypeAppearanceModel" + } + ] + } + }, + "additionalProperties": false + }, + "UpdateDocumentTypeRequestModel": { "required": [ "alias", "allowedAsRoot", + "allowedDocumentTypes", + "allowedTemplates", + "cleanup", + "compositions", "containers", "icon", "isElement", @@ -43616,14 +49599,259 @@ } ] } + }, + "allowedTemplates": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ] + } + }, + "defaultTemplate": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "cleanup": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentTypeCleanupModel" + } + ] + }, + "allowedDocumentTypes": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentTypeSortModel" + } + ] + } + }, + "compositions": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentTypeCompositionModel" + } + ] + } } }, "additionalProperties": false }, - "UpdateContentTypeForMediaTypeRequestModel": { + "UpdateDomainsRequestModel": { + "required": [ + "domains" + ], + "type": "object", + "properties": { + "defaultIsoCode": { + "type": "string", + "nullable": true + }, + "domains": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DomainPresentationModel" + } + ] + } + } + }, + "additionalProperties": false + }, + "UpdateFolderResponseModel": { + "required": [ + "name" + ], + "type": "object", + "properties": { + "name": { + "minLength": 1, + "type": "string" + } + }, + "additionalProperties": false + }, + "UpdateLanguageRequestModel": { + "required": [ + "isDefault", + "isMandatory", + "name" + ], + "type": "object", + "properties": { + "name": { + "minLength": 1, + "type": "string" + }, + "isDefault": { + "type": "boolean" + }, + "isMandatory": { + "type": "boolean" + }, + "fallbackIsoCode": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "UpdateMediaRequestModel": { + "required": [ + "values", + "variants" + ], + "type": "object", + "properties": { + "values": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MediaValueModel" + } + ] + } + }, + "variants": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MediaVariantRequestModel" + } + ] + } + } + }, + "additionalProperties": false + }, + "UpdateMediaTypePropertyTypeContainerRequestModel": { + "required": [ + "id", + "sortOrder", + "type" + ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "type": { + "minLength": 1, + "type": "string" + }, + "sortOrder": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "UpdateMediaTypePropertyTypeRequestModel": { + "required": [ + "alias", + "appearance", + "dataType", + "id", + "name", + "sortOrder", + "validation", + "variesByCulture", + "variesBySegment" + ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "container": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "sortOrder": { + "type": "integer", + "format": "int32" + }, + "alias": { + "minLength": 1, + "type": "string" + }, + "name": { + "minLength": 1, + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "dataType": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ] + }, + "variesByCulture": { + "type": "boolean" + }, + "variesBySegment": { + "type": "boolean" + }, + "validation": { + "oneOf": [ + { + "$ref": "#/components/schemas/PropertyTypeValidationModel" + } + ] + }, + "appearance": { + "oneOf": [ + { + "$ref": "#/components/schemas/PropertyTypeAppearanceModel" + } + ] + } + }, + "additionalProperties": false + }, + "UpdateMediaTypeRequestModel": { "required": [ "alias", "allowedAsRoot", + "allowedMediaTypes", + "compositions", "containers", "icon", "isElement", @@ -43689,14 +49917,231 @@ } ] } + }, + "allowedMediaTypes": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MediaTypeSortModel" + } + ] + } + }, + "compositions": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MediaTypeCompositionModel" + } + ] + } } }, "additionalProperties": false }, - "UpdateContentTypeForMemberTypeRequestModel": { + "UpdateMemberGroupRequestModel": { + "required": [ + "name" + ], + "type": "object", + "properties": { + "name": { + "type": "string" + } + }, + "additionalProperties": false + }, + "UpdateMemberRequestModel": { + "required": [ + "email", + "isApproved", + "isLockedOut", + "isTwoFactorEnabled", + "username", + "values", + "variants" + ], + "type": "object", + "properties": { + "values": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MemberValueModel" + } + ] + } + }, + "variants": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/MemberVariantRequestModel" + } + ] + } + }, + "email": { + "type": "string" + }, + "username": { + "type": "string" + }, + "oldPassword": { + "type": "string", + "nullable": true + }, + "newPassword": { + "type": "string", + "nullable": true + }, + "groups": { + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + }, + "isApproved": { + "type": "boolean" + }, + "isLockedOut": { + "type": "boolean" + }, + "isTwoFactorEnabled": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "UpdateMemberTypePropertyTypeContainerRequestModel": { + "required": [ + "id", + "sortOrder", + "type" + ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "parent": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "type": { + "minLength": 1, + "type": "string" + }, + "sortOrder": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, + "UpdateMemberTypePropertyTypeRequestModel": { + "required": [ + "alias", + "appearance", + "dataType", + "id", + "isSensitive", + "name", + "sortOrder", + "validation", + "variesByCulture", + "variesBySegment", + "visibility" + ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "container": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "sortOrder": { + "type": "integer", + "format": "int32" + }, + "alias": { + "minLength": 1, + "type": "string" + }, + "name": { + "minLength": 1, + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "dataType": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ] + }, + "variesByCulture": { + "type": "boolean" + }, + "variesBySegment": { + "type": "boolean" + }, + "validation": { + "oneOf": [ + { + "$ref": "#/components/schemas/PropertyTypeValidationModel" + } + ] + }, + "appearance": { + "oneOf": [ + { + "$ref": "#/components/schemas/PropertyTypeAppearanceModel" + } + ] + }, + "isSensitive": { + "type": "boolean" + }, + "visibility": { + "oneOf": [ + { + "$ref": "#/components/schemas/MemberTypePropertyTypeVisibilityModel" + } + ] + } + }, + "additionalProperties": false + }, + "UpdateMemberTypeRequestModel": { "required": [ "alias", "allowedAsRoot", + "compositions", "containers", "icon", "isElement", @@ -43762,326 +50207,7 @@ } ] } - } - }, - "additionalProperties": false - }, - "UpdateDataTypeRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/DataTypeModelBaseModel" - } - ], - "additionalProperties": false - }, - "UpdateDictionaryItemRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/DictionaryItemModelBaseModel" - } - ], - "additionalProperties": false - }, - "UpdateDocumentBlueprintRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/UpdateContentForDocumentRequestModel" - } - ], - "additionalProperties": false - }, - "UpdateDocumentNotificationsRequestModel": { - "required": [ - "subscribedActionIds" - ], - "type": "object", - "properties": { - "subscribedActionIds": { - "type": "array", - "items": { - "type": "string" - } - } - }, - "additionalProperties": false - }, - "UpdateDocumentRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/UpdateContentForDocumentRequestModel" - } - ], - "properties": { - "template": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ], - "nullable": true - } - }, - "additionalProperties": false - }, - "UpdateDocumentTypePropertyTypeContainerRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PropertyTypeContainerModelBaseModel" - } - ], - "additionalProperties": false - }, - "UpdateDocumentTypePropertyTypeRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PropertyTypeModelBaseModel" - } - ], - "additionalProperties": false - }, - "UpdateDocumentTypeRequestModel": { - "required": [ - "allowedDocumentTypes", - "allowedTemplates", - "cleanup", - "compositions" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/UpdateContentTypeForDocumentTypeRequestModel" - } - ], - "properties": { - "allowedTemplates": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ] - } }, - "defaultTemplate": { - "oneOf": [ - { - "$ref": "#/components/schemas/ReferenceByIdModel" - } - ], - "nullable": true - }, - "cleanup": { - "oneOf": [ - { - "$ref": "#/components/schemas/DocumentTypeCleanupModel" - } - ] - }, - "allowedDocumentTypes": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/DocumentTypeSortModel" - } - ] - } - }, - "compositions": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/DocumentTypeCompositionModel" - } - ] - } - } - }, - "additionalProperties": false - }, - "UpdateDomainsRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/DomainsPresentationModelBaseModel" - } - ], - "additionalProperties": false - }, - "UpdateFolderResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FolderModelBaseModel" - } - ], - "additionalProperties": false - }, - "UpdateLanguageRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/LanguageModelBaseModel" - } - ], - "additionalProperties": false - }, - "UpdateMediaRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/UpdateContentForMediaRequestModel" - } - ], - "additionalProperties": false - }, - "UpdateMediaTypePropertyTypeContainerRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PropertyTypeContainerModelBaseModel" - } - ], - "additionalProperties": false - }, - "UpdateMediaTypePropertyTypeRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PropertyTypeModelBaseModel" - } - ], - "additionalProperties": false - }, - "UpdateMediaTypeRequestModel": { - "required": [ - "allowedMediaTypes", - "compositions" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/UpdateContentTypeForMediaTypeRequestModel" - } - ], - "properties": { - "allowedMediaTypes": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MediaTypeSortModel" - } - ] - } - }, - "compositions": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/components/schemas/MediaTypeCompositionModel" - } - ] - } - } - }, - "additionalProperties": false - }, - "UpdateMemberGroupRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/MemberGroupPresentationBaseModel" - } - ], - "additionalProperties": false - }, - "UpdateMemberRequestModel": { - "required": [ - "email", - "isApproved", - "isLockedOut", - "isTwoFactorEnabled", - "username" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/UpdateContentForMemberRequestModel" - } - ], - "properties": { - "email": { - "type": "string" - }, - "username": { - "type": "string" - }, - "oldPassword": { - "type": "string", - "nullable": true - }, - "newPassword": { - "type": "string", - "nullable": true - }, - "groups": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "isApproved": { - "type": "boolean" - }, - "isLockedOut": { - "type": "boolean" - }, - "isTwoFactorEnabled": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "UpdateMemberTypePropertyTypeContainerRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PropertyTypeContainerModelBaseModel" - } - ], - "additionalProperties": false - }, - "UpdateMemberTypePropertyTypeRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/MemberTypePropertyTypeModelBaseModel" - } - ], - "additionalProperties": false - }, - "UpdateMemberTypeRequestModel": { - "required": [ - "compositions" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/UpdateContentTypeForMemberTypeRequestModel" - } - ], - "properties": { "compositions": { "type": "array", "items": { @@ -44097,15 +50223,97 @@ }, "UpdatePackageRequestModel": { "required": [ - "packagePath" + "contentLoadChildNodes", + "dataTypes", + "dictionaryItems", + "documentTypes", + "languages", + "mediaIds", + "mediaLoadChildNodes", + "mediaTypes", + "name", + "packagePath", + "partialViews", + "scripts", + "stylesheets", + "templates" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/PackageModelBaseModel" - } - ], "properties": { + "name": { + "type": "string" + }, + "contentNodeId": { + "type": "string", + "nullable": true + }, + "contentLoadChildNodes": { + "type": "boolean" + }, + "mediaIds": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + }, + "mediaLoadChildNodes": { + "type": "boolean" + }, + "documentTypes": { + "type": "array", + "items": { + "type": "string" + } + }, + "mediaTypes": { + "type": "array", + "items": { + "type": "string" + } + }, + "dataTypes": { + "type": "array", + "items": { + "type": "string" + } + }, + "templates": { + "type": "array", + "items": { + "type": "string" + } + }, + "partialViews": { + "type": "array", + "items": { + "type": "string" + } + }, + "stylesheets": { + "type": "array", + "items": { + "type": "string" + } + }, + "scripts": { + "type": "array", + "items": { + "type": "string" + } + }, + "languages": { + "type": "array", + "items": { + "type": "string" + } + }, + "dictionaryItems": { + "type": "array", + "items": { + "type": "string" + } + }, "packagePath": { "type": "string" } @@ -44113,185 +50321,64 @@ "additionalProperties": false }, "UpdatePartialViewRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemFileUpdateRequestModelBaseModel" - } + "required": [ + "content" ], + "type": "object", + "properties": { + "content": { + "type": "string" + } + }, "additionalProperties": false }, "UpdateScriptRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemFileUpdateRequestModelBaseModel" - } + "required": [ + "content" ], + "type": "object", + "properties": { + "content": { + "type": "string" + } + }, "additionalProperties": false }, "UpdateStylesheetRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/FileSystemFileUpdateRequestModelBaseModel" - } + "required": [ + "content" ], + "type": "object", + "properties": { + "content": { + "type": "string" + } + }, "additionalProperties": false }, "UpdateTemplateRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/TemplateModelBaseModel" - } + "required": [ + "alias", + "name" ], + "type": "object", + "properties": { + "name": { + "minLength": 1, + "type": "string" + }, + "alias": { + "minLength": 1, + "type": "string" + }, + "content": { + "type": "string", + "nullable": true + } + }, "additionalProperties": false }, "UpdateUserGroupRequestModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/UserGroupBaseModel" - } - ], - "additionalProperties": false - }, - "UpdateUserGroupsOnUserRequestModel": { - "required": [ - "userGroupIds", - "userIds" - ], - "type": "object", - "properties": { - "userIds": { - "uniqueItems": true, - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - "userGroupIds": { - "uniqueItems": true, - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - "additionalProperties": false - }, - "UpdateUserRequestModel": { - "required": [ - "documentStartNodeIds", - "languageIsoCode", - "mediaStartNodeIds" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/UserPresentationBaseModel" - } - ], - "properties": { - "languageIsoCode": { - "type": "string" - }, - "documentStartNodeIds": { - "uniqueItems": true, - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - "mediaStartNodeIds": { - "uniqueItems": true, - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - } - }, - "additionalProperties": false - }, - "UpdateWebhookRequestModel": { - "required": [ - "events" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/WebhookModelBaseModel" - } - ], - "properties": { - "events": { - "type": "array", - "items": { - "type": "string" - } - } - }, - "additionalProperties": false - }, - "UpgradeSettingsResponseModel": { - "required": [ - "currentState", - "newState", - "newVersion", - "oldVersion", - "reportUrl" - ], - "type": "object", - "properties": { - "currentState": { - "minLength": 1, - "type": "string" - }, - "newState": { - "minLength": 1, - "type": "string" - }, - "newVersion": { - "minLength": 1, - "type": "string" - }, - "oldVersion": { - "minLength": 1, - "type": "string" - }, - "reportUrl": { - "type": "string", - "readOnly": true - } - }, - "additionalProperties": false - }, - "UserConfigurationResponseModel": { - "required": [ - "canInviteUsers", - "passwordConfiguration" - ], - "type": "object", - "properties": { - "canInviteUsers": { - "type": "boolean" - }, - "passwordConfiguration": { - "oneOf": [ - { - "$ref": "#/components/schemas/PasswordConfigurationResponseModel" - } - ] - } - }, - "additionalProperties": false - }, - "UserGroupBaseModel": { "required": [ "documentRootAccess", "fallbackPermissions", @@ -44372,14 +50459,189 @@ }, "additionalProperties": false }, - "UserGroupItemResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/NamedItemResponseModelBaseModel" - } + "UpdateUserGroupsOnUserRequestModel": { + "required": [ + "userGroupIds", + "userIds" ], + "type": "object", "properties": { + "userIds": { + "uniqueItems": true, + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + }, + "userGroupIds": { + "uniqueItems": true, + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + "additionalProperties": false + }, + "UpdateUserRequestModel": { + "required": [ + "documentStartNodeIds", + "email", + "languageIsoCode", + "mediaStartNodeIds", + "name", + "userGroupIds", + "userName" + ], + "type": "object", + "properties": { + "email": { + "type": "string" + }, + "userName": { + "type": "string" + }, + "name": { + "type": "string" + }, + "userGroupIds": { + "uniqueItems": true, + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + }, + "languageIsoCode": { + "type": "string" + }, + "documentStartNodeIds": { + "uniqueItems": true, + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + }, + "mediaStartNodeIds": { + "uniqueItems": true, + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + } + }, + "additionalProperties": false + }, + "UpdateWebhookRequestModel": { + "required": [ + "contentTypeKeys", + "enabled", + "events", + "headers", + "url" + ], + "type": "object", + "properties": { + "enabled": { + "type": "boolean" + }, + "url": { + "minLength": 1, + "type": "string" + }, + "contentTypeKeys": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + }, + "headers": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "events": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "additionalProperties": false + }, + "UpgradeSettingsResponseModel": { + "required": [ + "currentState", + "newState", + "newVersion", + "oldVersion", + "reportUrl" + ], + "type": "object", + "properties": { + "currentState": { + "minLength": 1, + "type": "string" + }, + "newState": { + "minLength": 1, + "type": "string" + }, + "newVersion": { + "minLength": 1, + "type": "string" + }, + "oldVersion": { + "minLength": 1, + "type": "string" + }, + "reportUrl": { + "type": "string", + "readOnly": true + } + }, + "additionalProperties": false + }, + "UserConfigurationResponseModel": { + "required": [ + "canInviteUsers", + "passwordConfiguration" + ], + "type": "object", + "properties": { + "canInviteUsers": { + "type": "boolean" + }, + "passwordConfiguration": { + "oneOf": [ + { + "$ref": "#/components/schemas/PasswordConfigurationResponseModel" + } + ] + } + }, + "additionalProperties": false + }, + "UserGroupItemResponseModel": { + "required": [ + "id", + "name" + ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string" + }, "icon": { "type": "string", "nullable": true @@ -44389,16 +50651,84 @@ }, "UserGroupResponseModel": { "required": [ + "documentRootAccess", + "fallbackPermissions", + "hasAccessToAllLanguages", "id", - "isSystemGroup" + "isSystemGroup", + "languages", + "mediaRootAccess", + "name", + "permissions", + "sections" ], "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/UserGroupBaseModel" - } - ], "properties": { + "name": { + "type": "string" + }, + "icon": { + "type": "string", + "nullable": true + }, + "sections": { + "type": "array", + "items": { + "type": "string" + } + }, + "languages": { + "type": "array", + "items": { + "type": "string" + } + }, + "hasAccessToAllLanguages": { + "type": "boolean" + }, + "documentStartNode": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "documentRootAccess": { + "type": "boolean" + }, + "mediaStartNode": { + "oneOf": [ + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ], + "nullable": true + }, + "mediaRootAccess": { + "type": "boolean" + }, + "fallbackPermissions": { + "uniqueItems": true, + "type": "array", + "items": { + "type": "string" + } + }, + "permissions": { + "uniqueItems": true, + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/DocumentPermissionPresentationModel" + }, + { + "$ref": "#/components/schemas/UnknownTypePermissionPresentationModel" + } + ] + } + }, "id": { "type": "string", "format": "uuid" @@ -44409,7 +50739,7 @@ }, "additionalProperties": false }, - "UserInstallPresentationModel": { + "UserInstallRequestModel": { "required": [ "email", "name", @@ -44440,12 +50770,20 @@ "additionalProperties": false }, "UserItemResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/NamedItemResponseModelBaseModel" - } + "required": [ + "id", + "name" ], + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "name": { + "type": "string" + } + }, "additionalProperties": false }, "UserOrderModel": { @@ -44503,10 +50841,19 @@ }, "additionalProperties": false }, - "UserPresentationBaseModel": { + "UserResponseModel": { "required": [ + "avatarUrls", + "createDate", + "documentStartNodeIds", "email", + "failedLoginAttempts", + "id", + "isAdmin", + "mediaStartNodeIds", "name", + "state", + "updateDate", "userGroupIds", "userName" ], @@ -44528,29 +50875,7 @@ "type": "string", "format": "uuid" } - } - }, - "additionalProperties": false - }, - "UserResponseModel": { - "required": [ - "avatarUrls", - "createDate", - "documentStartNodeIds", - "failedLoginAttempts", - "id", - "isAdmin", - "mediaStartNodeIds", - "state", - "updateDate" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/UserPresentationBaseModel" - } - ], - "properties": { + }, "id": { "type": "string", "format": "uuid" @@ -44669,9 +50994,6 @@ "oneOf": [ { "$ref": "#/components/schemas/TourStatusModel" - }, - { - "$ref": "#/components/schemas/SetTourStatusRequestModel" } ] } @@ -44695,40 +51017,7 @@ }, "additionalProperties": false }, - "ValueModelBaseModel": { - "required": [ - "alias" - ], - "type": "object", - "properties": { - "culture": { - "type": "string", - "nullable": true - }, - "segment": { - "type": "string", - "nullable": true - }, - "alias": { - "minLength": 1, - "type": "string" - }, - "value": { - "nullable": true - } - }, - "additionalProperties": false - }, "VariantItemResponseModel": { - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/VariantItemResponseModelBaseModel" - } - ], - "additionalProperties": false - }, - "VariantItemResponseModelBaseModel": { "required": [ "name" ], @@ -44744,58 +51033,6 @@ }, "additionalProperties": false }, - "VariantModelBaseModel": { - "required": [ - "name" - ], - "type": "object", - "properties": { - "culture": { - "type": "string", - "nullable": true - }, - "segment": { - "type": "string", - "nullable": true - }, - "name": { - "minLength": 1, - "type": "string" - } - }, - "additionalProperties": false - }, - "VariantResponseModelBaseModel": { - "required": [ - "createDate", - "name", - "updateDate" - ], - "type": "object", - "properties": { - "culture": { - "type": "string", - "nullable": true - }, - "segment": { - "type": "string", - "nullable": true - }, - "name": { - "minLength": 1, - "type": "string" - }, - "createDate": { - "type": "string", - "format": "date-time" - }, - "updateDate": { - "type": "string", - "format": "date-time" - } - }, - "additionalProperties": false - }, "VerifyInviteUserRequestModel": { "required": [ "token", @@ -44917,11 +51154,13 @@ }, "additionalProperties": false }, - "WebhookModelBaseModel": { + "WebhookResponseModel": { "required": [ "contentTypeKeys", "enabled", + "events", "headers", + "id", "url" ], "type": "object", @@ -44945,22 +51184,7 @@ "additionalProperties": { "type": "string" } - } - }, - "additionalProperties": false - }, - "WebhookResponseModel": { - "required": [ - "events", - "id" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/components/schemas/WebhookModelBaseModel" - } - ], - "properties": { + }, "id": { "type": "string", "format": "uuid" diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/Document/CreateDocumentRequestModelBase.cs b/src/Umbraco.Cms.Api.Management/ViewModels/Document/CreateDocumentRequestModelBase.cs index d48259c8c3..745b4f26e8 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/Document/CreateDocumentRequestModelBase.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/Document/CreateDocumentRequestModelBase.cs @@ -1,10 +1,8 @@ -using Umbraco.Cms.Api.Common.Attributes; using Umbraco.Cms.Api.Management.ViewModels.Content; using Umbraco.Cms.Core.Models.ContentEditing; namespace Umbraco.Cms.Api.Management.ViewModels.Document; -[ShortGenericSchemaName("CreateContentForDocumentRequestModel")] public abstract class CreateDocumentRequestModelBase : CreateContentWithParentRequestModelBase where TValueModel : ValueModelBase diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/Document/DocumentResponseModelBase.cs b/src/Umbraco.Cms.Api.Management/ViewModels/Document/DocumentResponseModelBase.cs index 50e3ff011b..679b29a3d1 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/Document/DocumentResponseModelBase.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/Document/DocumentResponseModelBase.cs @@ -1,11 +1,9 @@ -using Umbraco.Cms.Api.Common.Attributes; using Umbraco.Cms.Api.Management.ViewModels.Content; using Umbraco.Cms.Api.Management.ViewModels.DocumentType; using Umbraco.Cms.Core.Models.ContentEditing; namespace Umbraco.Cms.Api.Management.ViewModels.Document; -[ShortGenericSchemaName("ContentForDocumentResponseModel")] public abstract class DocumentResponseModelBase : ContentResponseModelBase where TValueResponseModelBase : ValueModelBase diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/Document/UpdateDocumentRequestModelBase.cs b/src/Umbraco.Cms.Api.Management/ViewModels/Document/UpdateDocumentRequestModelBase.cs index bcbfa74f0c..df7af2055c 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/Document/UpdateDocumentRequestModelBase.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/Document/UpdateDocumentRequestModelBase.cs @@ -1,10 +1,8 @@ -using Umbraco.Cms.Api.Common.Attributes; using Umbraco.Cms.Api.Management.ViewModels.Content; using Umbraco.Cms.Core.Models.ContentEditing; namespace Umbraco.Cms.Api.Management.ViewModels.Document; -[ShortGenericSchemaName("UpdateContentForDocumentRequestModel")] public abstract class UpdateDocumentRequestModelBase : UpdateContentRequestModelBase where TValueModel : ValueModelBase where TVariantModel : VariantModelBase diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/DocumentType/CreateDocumentTypeRequestModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/DocumentType/CreateDocumentTypeRequestModel.cs index 8b450b15a6..32fe30db8b 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/DocumentType/CreateDocumentTypeRequestModel.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/DocumentType/CreateDocumentTypeRequestModel.cs @@ -1,9 +1,7 @@ -using Umbraco.Cms.Api.Common.Attributes; -using Umbraco.Cms.Api.Management.ViewModels.ContentType; +using Umbraco.Cms.Api.Management.ViewModels.ContentType; namespace Umbraco.Cms.Api.Management.ViewModels.DocumentType; -[ShortGenericSchemaName("CreateContentTypeForDocumentTypeRequestModel")] public class CreateDocumentTypeRequestModel : CreateContentTypeWithParentRequestModelBase { diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/DocumentType/DocumentTypeResponseModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/DocumentType/DocumentTypeResponseModel.cs index 1ee38b2c97..96d92cd2c5 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/DocumentType/DocumentTypeResponseModel.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/DocumentType/DocumentTypeResponseModel.cs @@ -1,9 +1,7 @@ -using Umbraco.Cms.Api.Common.Attributes; -using Umbraco.Cms.Api.Management.ViewModels.ContentType; +using Umbraco.Cms.Api.Management.ViewModels.ContentType; namespace Umbraco.Cms.Api.Management.ViewModels.DocumentType; -[ShortGenericSchemaName("ContentTypeForDocumentTypeResponseModel")] public class DocumentTypeResponseModel : ContentTypeResponseModelBase { public IEnumerable AllowedTemplates { get; set; } = Enumerable.Empty(); diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/DocumentType/UpdateDocumentTypeRequestModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/DocumentType/UpdateDocumentTypeRequestModel.cs index a739c7d702..26ca25a5d7 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/DocumentType/UpdateDocumentTypeRequestModel.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/DocumentType/UpdateDocumentTypeRequestModel.cs @@ -1,9 +1,7 @@ -using Umbraco.Cms.Api.Common.Attributes; using Umbraco.Cms.Api.Management.ViewModels.ContentType; namespace Umbraco.Cms.Api.Management.ViewModels.DocumentType; -[ShortGenericSchemaName("UpdateContentTypeForDocumentTypeRequestModel")] public class UpdateDocumentTypeRequestModel : UpdateContentTypeRequestModelBase { diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/Installer/DatabaseInstallPresentationModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/Installer/DatabaseInstallPresentationModel.cs deleted file mode 100644 index 74d6c90fba..0000000000 --- a/src/Umbraco.Cms.Api.Management/ViewModels/Installer/DatabaseInstallPresentationModel.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System.ComponentModel; -using System.ComponentModel.DataAnnotations; - -namespace Umbraco.Cms.Api.Management.ViewModels.Installer; - -public class DatabaseInstallPresentationModel -{ - [Required] - public Guid Id { get; set; } - - [Required] - public string? ProviderName { get; set; } - - public string? Server { get; set; } - - public string? Name { get; set; } - - public string? Username { get; set; } - - [PasswordPropertyText] - public string? Password { get; set; } - - public bool UseIntegratedAuthentication { get; set; } - - public string? ConnectionString { get; set; } - - public bool TrustServerCertificate { get; set; } -} diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/Installer/DatabaseInstallRequestModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/Installer/DatabaseInstallRequestModel.cs index 56e10697f0..1291047b04 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/Installer/DatabaseInstallRequestModel.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/Installer/DatabaseInstallRequestModel.cs @@ -1,6 +1,28 @@ -namespace Umbraco.Cms.Api.Management.ViewModels.Installer; +using System.ComponentModel; +using System.ComponentModel.DataAnnotations; -public class DatabaseInstallRequestModel : DatabaseInstallPresentationModel +namespace Umbraco.Cms.Api.Management.ViewModels.Installer; + +public class DatabaseInstallRequestModel { + [Required] + public Guid Id { get; set; } + [Required] + public string? ProviderName { get; set; } + + public string? Server { get; set; } + + public string? Name { get; set; } + + public string? Username { get; set; } + + [PasswordPropertyText] + public string? Password { get; set; } + + public bool UseIntegratedAuthentication { get; set; } + + public string? ConnectionString { get; set; } + + public bool TrustServerCertificate { get; set; } } diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/Installer/InstallRequestModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/Installer/InstallRequestModel.cs index 78bcdbf401..1802cca799 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/Installer/InstallRequestModel.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/Installer/InstallRequestModel.cs @@ -7,10 +7,10 @@ namespace Umbraco.Cms.Api.Management.ViewModels.Installer; public class InstallRequestModel { [Required] - public UserInstallPresentationModel User { get; set; } = null!; + public UserInstallRequestModel User { get; set; } = null!; [Required] - public DatabaseInstallPresentationModel Database { get; set; } = null!; + public DatabaseInstallRequestModel Database { get; set; } = null!; [JsonConverter(typeof(JsonStringEnumConverter))] public TelemetryLevel TelemetryLevel { get; set; } = TelemetryLevel.Basic; diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/Installer/UserInstallPresentationModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/Installer/UserInstallRequestModel.cs similarity index 91% rename from src/Umbraco.Cms.Api.Management/ViewModels/Installer/UserInstallPresentationModel.cs rename to src/Umbraco.Cms.Api.Management/ViewModels/Installer/UserInstallRequestModel.cs index 4e9f3a6e11..b14a67e726 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/Installer/UserInstallPresentationModel.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/Installer/UserInstallRequestModel.cs @@ -3,7 +3,7 @@ using System.ComponentModel.DataAnnotations; namespace Umbraco.Cms.Api.Management.ViewModels.Installer; -public class UserInstallPresentationModel +public class UserInstallRequestModel { [Required] [StringLength(255)] diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/Media/CreateMediaRequestModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/Media/CreateMediaRequestModel.cs index 66acfb0260..3d1a3ec4bf 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/Media/CreateMediaRequestModel.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/Media/CreateMediaRequestModel.cs @@ -1,9 +1,7 @@ -using Umbraco.Cms.Api.Common.Attributes; -using Umbraco.Cms.Api.Management.ViewModels.Content; +using Umbraco.Cms.Api.Management.ViewModels.Content; namespace Umbraco.Cms.Api.Management.ViewModels.Media; -[ShortGenericSchemaName("CreateContentForMediaRequestModel")] public class CreateMediaRequestModel : CreateContentWithParentRequestModelBase { public required ReferenceByIdModel MediaType { get; set; } diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/Media/MediaResponseModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/Media/MediaResponseModel.cs index 0b59901e5f..dc6bc6da40 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/Media/MediaResponseModel.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/Media/MediaResponseModel.cs @@ -1,10 +1,8 @@ -using Umbraco.Cms.Api.Common.Attributes; -using Umbraco.Cms.Api.Management.ViewModels.Content; +using Umbraco.Cms.Api.Management.ViewModels.Content; using Umbraco.Cms.Api.Management.ViewModels.MediaType; namespace Umbraco.Cms.Api.Management.ViewModels.Media; -[ShortGenericSchemaName("ContentForMediaResponseModel")] public class MediaResponseModel : ContentResponseModelBase { public IEnumerable Urls { get; set; } = Enumerable.Empty(); diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/Media/UpdateMediaRequestModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/Media/UpdateMediaRequestModel.cs index a0f5cc1dab..54af0e7c0e 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/Media/UpdateMediaRequestModel.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/Media/UpdateMediaRequestModel.cs @@ -1,9 +1,7 @@ -using Umbraco.Cms.Api.Common.Attributes; -using Umbraco.Cms.Api.Management.ViewModels.Content; +using Umbraco.Cms.Api.Management.ViewModels.Content; namespace Umbraco.Cms.Api.Management.ViewModels.Media; -[ShortGenericSchemaName("UpdateContentForMediaRequestModel")] public class UpdateMediaRequestModel : UpdateContentRequestModelBase { } diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/MediaType/CreateMediaTypeRequestModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/MediaType/CreateMediaTypeRequestModel.cs index cae2e515d0..c28cac1ce3 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/MediaType/CreateMediaTypeRequestModel.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/MediaType/CreateMediaTypeRequestModel.cs @@ -1,9 +1,7 @@ -using Umbraco.Cms.Api.Common.Attributes; -using Umbraco.Cms.Api.Management.ViewModels.ContentType; +using Umbraco.Cms.Api.Management.ViewModels.ContentType; namespace Umbraco.Cms.Api.Management.ViewModels.MediaType; -[ShortGenericSchemaName("CreateContentTypeForMediaTypeRequestModel")] public class CreateMediaTypeRequestModel : CreateContentTypeWithParentRequestModelBase { diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/MediaType/MediaTypeResponseModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/MediaType/MediaTypeResponseModel.cs index 09d719a08c..19112c6a87 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/MediaType/MediaTypeResponseModel.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/MediaType/MediaTypeResponseModel.cs @@ -1,9 +1,7 @@ -using Umbraco.Cms.Api.Common.Attributes; -using Umbraco.Cms.Api.Management.ViewModels.ContentType; +using Umbraco.Cms.Api.Management.ViewModels.ContentType; namespace Umbraco.Cms.Api.Management.ViewModels.MediaType; -[ShortGenericSchemaName("ContentTypeForMediaTypeResponseModel")] public class MediaTypeResponseModel : ContentTypeResponseModelBase { public IEnumerable AllowedMediaTypes { get; set; } = Enumerable.Empty(); diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/MediaType/UpdateMediaTypeRequestModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/MediaType/UpdateMediaTypeRequestModel.cs index 07e080a3f6..e5344ce097 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/MediaType/UpdateMediaTypeRequestModel.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/MediaType/UpdateMediaTypeRequestModel.cs @@ -1,9 +1,7 @@ -using Umbraco.Cms.Api.Common.Attributes; -using Umbraco.Cms.Api.Management.ViewModels.ContentType; +using Umbraco.Cms.Api.Management.ViewModels.ContentType; namespace Umbraco.Cms.Api.Management.ViewModels.MediaType; -[ShortGenericSchemaName("UpdateContentTypeForMediaTypeRequestModel")] public class UpdateMediaTypeRequestModel : UpdateContentTypeRequestModelBase { diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/Member/CreateMemberRequestModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/Member/CreateMemberRequestModel.cs index c8def61a26..a7460bdad7 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/Member/CreateMemberRequestModel.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/Member/CreateMemberRequestModel.cs @@ -1,9 +1,7 @@ -using Umbraco.Cms.Api.Common.Attributes; -using Umbraco.Cms.Api.Management.ViewModels.Content; +using Umbraco.Cms.Api.Management.ViewModels.Content; namespace Umbraco.Cms.Api.Management.ViewModels.Member; -[ShortGenericSchemaName("CreateContentForMemberRequestModel")] public class CreateMemberRequestModel : CreateContentRequestModelBase { public string Email { get; set; } = string.Empty; diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/Member/MemberResponseModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/Member/MemberResponseModel.cs index 5fb6f2fb55..f9521bdba4 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/Member/MemberResponseModel.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/Member/MemberResponseModel.cs @@ -1,10 +1,8 @@ -using Umbraco.Cms.Api.Common.Attributes; -using Umbraco.Cms.Api.Management.ViewModels.Content; +using Umbraco.Cms.Api.Management.ViewModels.Content; using Umbraco.Cms.Api.Management.ViewModels.MemberType; namespace Umbraco.Cms.Api.Management.ViewModels.Member; -[ShortGenericSchemaName("ContentForMemberResponseModel")] public class MemberResponseModel : ContentResponseModelBase { public string Email { get; set; } = string.Empty; diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/Member/UpdateMemberRequestModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/Member/UpdateMemberRequestModel.cs index a31c3fe35f..5bfd3afb6e 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/Member/UpdateMemberRequestModel.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/Member/UpdateMemberRequestModel.cs @@ -1,9 +1,7 @@ -using Umbraco.Cms.Api.Common.Attributes; -using Umbraco.Cms.Api.Management.ViewModels.Content; +using Umbraco.Cms.Api.Management.ViewModels.Content; namespace Umbraco.Cms.Api.Management.ViewModels.Member; -[ShortGenericSchemaName("UpdateContentForMemberRequestModel")] public class UpdateMemberRequestModel : UpdateContentRequestModelBase { public string Email { get; set; } = string.Empty; diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/MemberType/CreateMemberTypeRequestModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/MemberType/CreateMemberTypeRequestModel.cs index eacee7cf4b..020d4af05d 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/MemberType/CreateMemberTypeRequestModel.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/MemberType/CreateMemberTypeRequestModel.cs @@ -1,9 +1,7 @@ -using Umbraco.Cms.Api.Common.Attributes; -using Umbraco.Cms.Api.Management.ViewModels.ContentType; +using Umbraco.Cms.Api.Management.ViewModels.ContentType; namespace Umbraco.Cms.Api.Management.ViewModels.MemberType; -[ShortGenericSchemaName("CreateContentTypeForMemberTypeRequestModel")] public class CreateMemberTypeRequestModel : CreateContentTypeRequestModelBase { diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/MemberType/MemberTypeResponseModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/MemberType/MemberTypeResponseModel.cs index 9ff1c8bac1..fbce287865 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/MemberType/MemberTypeResponseModel.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/MemberType/MemberTypeResponseModel.cs @@ -1,9 +1,7 @@ -using Umbraco.Cms.Api.Common.Attributes; -using Umbraco.Cms.Api.Management.ViewModels.ContentType; +using Umbraco.Cms.Api.Management.ViewModels.ContentType; namespace Umbraco.Cms.Api.Management.ViewModels.MemberType; -[ShortGenericSchemaName("ContentTypeForMemberTypeResponseModel")] public class MemberTypeResponseModel : ContentTypeResponseModelBase { public IEnumerable Compositions { get; set; } = Enumerable.Empty(); diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/MemberType/UpdateMemberTypeRequestModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/MemberType/UpdateMemberTypeRequestModel.cs index 647588234d..1d14d91e39 100644 --- a/src/Umbraco.Cms.Api.Management/ViewModels/MemberType/UpdateMemberTypeRequestModel.cs +++ b/src/Umbraco.Cms.Api.Management/ViewModels/MemberType/UpdateMemberTypeRequestModel.cs @@ -1,9 +1,7 @@ -using Umbraco.Cms.Api.Common.Attributes; -using Umbraco.Cms.Api.Management.ViewModels.ContentType; +using Umbraco.Cms.Api.Management.ViewModels.ContentType; namespace Umbraco.Cms.Api.Management.ViewModels.MemberType; -[ShortGenericSchemaName("UpdateContentTypeForMemberTypeRequestModel")] public class UpdateMemberTypeRequestModel : UpdateContentTypeRequestModelBase {