@ayasofyazilim/saas 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (192) hide show
  1. package/AccountService/AccountServiceClient.ts +58 -0
  2. package/AccountService/core/ApiError.ts +25 -0
  3. package/AccountService/core/ApiRequestOptions.ts +17 -0
  4. package/AccountService/core/ApiResult.ts +11 -0
  5. package/AccountService/core/BaseHttpRequest.ts +14 -0
  6. package/AccountService/core/CancelablePromise.ts +131 -0
  7. package/AccountService/core/FetchHttpRequest.ts +26 -0
  8. package/AccountService/core/OpenAPI.ts +32 -0
  9. package/AccountService/core/request.ts +322 -0
  10. package/AccountService/index.ts +122 -0
  11. package/AccountService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -0
  12. package/AccountService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -0
  13. package/AccountService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -0
  14. package/AccountService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -0
  15. package/AccountService/models/Volo_Abp_Account_AuthenticatorInfoDto.ts +9 -0
  16. package/AccountService/models/Volo_Abp_Account_ChangePasswordInput.ts +9 -0
  17. package/AccountService/models/Volo_Abp_Account_ConfirmEmailInput.ts +9 -0
  18. package/AccountService/models/Volo_Abp_Account_ConfirmPhoneNumberInput.ts +9 -0
  19. package/AccountService/models/Volo_Abp_Account_DelegateNewUserInput.ts +10 -0
  20. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderDto.ts +9 -0
  21. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto.ts +11 -0
  22. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto.ts +13 -0
  23. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -0
  24. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -0
  25. package/AccountService/models/Volo_Abp_Account_IdentityUserConfirmationStateDto.ts +9 -0
  26. package/AccountService/models/Volo_Abp_Account_IsLinkedInput.ts +9 -0
  27. package/AccountService/models/Volo_Abp_Account_LinkUserDto.ts +12 -0
  28. package/AccountService/models/Volo_Abp_Account_LinkUserInput.ts +10 -0
  29. package/AccountService/models/Volo_Abp_Account_ProfileDto.ts +20 -0
  30. package/AccountService/models/Volo_Abp_Account_ProfilePictureSourceDto.ts +11 -0
  31. package/AccountService/models/Volo_Abp_Account_ProfilePictureType.ts +9 -0
  32. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult.ts +10 -0
  33. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo.ts +9 -0
  34. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType.ts +12 -0
  35. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo.ts +11 -0
  36. package/AccountService/models/Volo_Abp_Account_RegisterDto.ts +15 -0
  37. package/AccountService/models/Volo_Abp_Account_ResetPasswordDto.ts +10 -0
  38. package/AccountService/models/Volo_Abp_Account_SendEmailConfirmationTokenDto.ts +11 -0
  39. package/AccountService/models/Volo_Abp_Account_SendPasswordResetCodeDto.ts +11 -0
  40. package/AccountService/models/Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto.ts +9 -0
  41. package/AccountService/models/Volo_Abp_Account_SendTwoFactorCodeInput.ts +10 -0
  42. package/AccountService/models/Volo_Abp_Account_UnLinkUserInput.ts +9 -0
  43. package/AccountService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -0
  44. package/AccountService/models/Volo_Abp_Account_UpdateProfileDto.ts +15 -0
  45. package/AccountService/models/Volo_Abp_Account_UserDelegationDto.ts +11 -0
  46. package/AccountService/models/Volo_Abp_Account_UserLookupDto.ts +9 -0
  47. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeDto.ts +8 -0
  48. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeInput.ts +8 -0
  49. package/AccountService/models/Volo_Abp_Account_VerifyEmailConfirmationTokenInput.ts +9 -0
  50. package/AccountService/models/Volo_Abp_Account_VerifyLinkLoginTokenInput.ts +10 -0
  51. package/AccountService/models/Volo_Abp_Account_VerifyLinkTokenInput.ts +10 -0
  52. package/AccountService/models/Volo_Abp_Account_VerifyPasswordResetTokenInput.ts +9 -0
  53. package/AccountService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -0
  54. package/AccountService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -0
  55. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -0
  56. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -0
  57. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -0
  58. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -0
  59. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -0
  60. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -0
  61. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -0
  62. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -0
  63. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -0
  64. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -0
  65. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -0
  66. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -0
  67. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -0
  68. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -0
  69. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -0
  70. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -0
  71. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -0
  72. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -0
  73. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -0
  74. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -0
  75. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -0
  76. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -0
  77. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -0
  78. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -0
  79. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -0
  80. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -0
  81. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -0
  82. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -0
  83. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -0
  84. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -0
  85. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -0
  86. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -0
  87. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -0
  88. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -0
  89. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -0
  90. package/AccountService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -0
  91. package/AccountService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -0
  92. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -0
  93. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -0
  94. package/AccountService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -0
  95. package/AccountService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -0
  96. package/AccountService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -0
  97. package/AccountService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -0
  98. package/AccountService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -0
  99. package/AccountService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -0
  100. package/AccountService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -0
  101. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -0
  102. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -0
  103. package/AccountService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -0
  104. package/AccountService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -0
  105. package/AccountService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -0
  106. package/AccountService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -0
  107. package/AccountService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -0
  108. package/AccountService/models/Volo_Abp_NameValue.ts +9 -0
  109. package/AccountService/services/AbpApiDefinitionService.ts +34 -0
  110. package/AccountService/services/AbpApplicationConfigurationService.ts +34 -0
  111. package/AccountService/services/AbpApplicationLocalizationService.ts +37 -0
  112. package/AccountService/services/AbpTenantService.ts +58 -0
  113. package/AccountService/services/AccountExternalProviderService.ts +56 -0
  114. package/AccountService/services/AccountService.ts +545 -0
  115. package/AccountService/services/AccountSettingsService.ts +178 -0
  116. package/AccountService/services/DynamicClaimsService.ts +27 -0
  117. package/AccountService/services/LoginService.ts +99 -0
  118. package/AccountService/services/ProfileService.ts +155 -0
  119. package/AccountService/services/UserService.ts +313 -0
  120. package/ProjectService/ProjectServiceClient.ts +40 -0
  121. package/ProjectService/core/ApiError.ts +25 -0
  122. package/ProjectService/core/ApiRequestOptions.ts +17 -0
  123. package/ProjectService/core/ApiResult.ts +11 -0
  124. package/ProjectService/core/BaseHttpRequest.ts +14 -0
  125. package/ProjectService/core/CancelablePromise.ts +131 -0
  126. package/ProjectService/core/FetchHttpRequest.ts +26 -0
  127. package/ProjectService/core/OpenAPI.ts +32 -0
  128. package/ProjectService/core/request.ts +322 -0
  129. package/ProjectService/index.ts +73 -0
  130. package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectsDto_SaveProjectDto.ts +19 -0
  131. package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectsDto_UpdateProjectDto.ts +20 -0
  132. package/ProjectService/models/UpWithCrowdDemo_ProjectService_Projects_ProjectDto.ts +20 -0
  133. package/ProjectService/models/UpWithCrowdDemo_ProjectService_Samples_SampleDto.ts +8 -0
  134. package/ProjectService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -0
  135. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -0
  136. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -0
  137. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -0
  138. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -0
  139. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -0
  140. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -0
  141. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -0
  142. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -0
  143. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -0
  144. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -0
  145. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -0
  146. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -0
  147. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -0
  148. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -0
  149. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -0
  150. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -0
  151. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -0
  152. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -0
  153. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -0
  154. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -0
  155. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -0
  156. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -0
  157. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -0
  158. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -0
  159. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -0
  160. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -0
  161. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -0
  162. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -0
  163. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -0
  164. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -0
  165. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -0
  166. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -0
  167. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -0
  168. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -0
  169. package/ProjectService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -0
  170. package/ProjectService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -0
  171. package/ProjectService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -0
  172. package/ProjectService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -0
  173. package/ProjectService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -0
  174. package/ProjectService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -0
  175. package/ProjectService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -0
  176. package/ProjectService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -0
  177. package/ProjectService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -0
  178. package/ProjectService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -0
  179. package/ProjectService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -0
  180. package/ProjectService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -0
  181. package/ProjectService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -0
  182. package/ProjectService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -0
  183. package/ProjectService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -0
  184. package/ProjectService/models/Volo_Abp_NameValue.ts +9 -0
  185. package/ProjectService/services/AbpApiDefinitionService.ts +34 -0
  186. package/ProjectService/services/AbpApplicationConfigurationService.ts +34 -0
  187. package/ProjectService/services/AbpApplicationLocalizationService.ts +37 -0
  188. package/ProjectService/services/ProjectService.ts +143 -0
  189. package/ProjectService/services/SampleServiceService.ts +46 -0
  190. package/ProjectService.json +2938 -0
  191. package/index.ts +2 -0
  192. package/package.json +17 -0
@@ -0,0 +1,2938 @@
1
+ {
2
+ "openapi": "3.0.1",
3
+ "info": {
4
+ "title": "ProjectService Service API",
5
+ "version": "v1"
6
+ },
7
+ "paths": {
8
+ "/api/abp/api-definition": {
9
+ "get": {
10
+ "tags": [
11
+ "AbpApiDefinition"
12
+ ],
13
+ "parameters": [
14
+ {
15
+ "name": "IncludeTypes",
16
+ "in": "query",
17
+ "schema": {
18
+ "type": "boolean"
19
+ }
20
+ }
21
+ ],
22
+ "responses": {
23
+ "200": {
24
+ "description": "Success",
25
+ "content": {
26
+ "text/plain": {
27
+ "schema": {
28
+ "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ApplicationApiDescriptionModel"
29
+ }
30
+ },
31
+ "application/json": {
32
+ "schema": {
33
+ "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ApplicationApiDescriptionModel"
34
+ }
35
+ },
36
+ "text/json": {
37
+ "schema": {
38
+ "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ApplicationApiDescriptionModel"
39
+ }
40
+ }
41
+ }
42
+ },
43
+ "403": {
44
+ "description": "Forbidden",
45
+ "content": {
46
+ "text/plain": {
47
+ "schema": {
48
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
49
+ }
50
+ },
51
+ "application/json": {
52
+ "schema": {
53
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
54
+ }
55
+ },
56
+ "text/json": {
57
+ "schema": {
58
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
59
+ }
60
+ }
61
+ }
62
+ },
63
+ "401": {
64
+ "description": "Unauthorized",
65
+ "content": {
66
+ "text/plain": {
67
+ "schema": {
68
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
69
+ }
70
+ },
71
+ "application/json": {
72
+ "schema": {
73
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
74
+ }
75
+ },
76
+ "text/json": {
77
+ "schema": {
78
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
79
+ }
80
+ }
81
+ }
82
+ },
83
+ "400": {
84
+ "description": "Bad Request",
85
+ "content": {
86
+ "text/plain": {
87
+ "schema": {
88
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
89
+ }
90
+ },
91
+ "application/json": {
92
+ "schema": {
93
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
94
+ }
95
+ },
96
+ "text/json": {
97
+ "schema": {
98
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
99
+ }
100
+ }
101
+ }
102
+ },
103
+ "404": {
104
+ "description": "Not Found",
105
+ "content": {
106
+ "text/plain": {
107
+ "schema": {
108
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
109
+ }
110
+ },
111
+ "application/json": {
112
+ "schema": {
113
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
114
+ }
115
+ },
116
+ "text/json": {
117
+ "schema": {
118
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
119
+ }
120
+ }
121
+ }
122
+ },
123
+ "501": {
124
+ "description": "Server Error",
125
+ "content": {
126
+ "text/plain": {
127
+ "schema": {
128
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
129
+ }
130
+ },
131
+ "application/json": {
132
+ "schema": {
133
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
134
+ }
135
+ },
136
+ "text/json": {
137
+ "schema": {
138
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
139
+ }
140
+ }
141
+ }
142
+ },
143
+ "500": {
144
+ "description": "Server Error",
145
+ "content": {
146
+ "text/plain": {
147
+ "schema": {
148
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
149
+ }
150
+ },
151
+ "application/json": {
152
+ "schema": {
153
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
154
+ }
155
+ },
156
+ "text/json": {
157
+ "schema": {
158
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
159
+ }
160
+ }
161
+ }
162
+ }
163
+ }
164
+ }
165
+ },
166
+ "/api/abp/application-configuration": {
167
+ "get": {
168
+ "tags": [
169
+ "AbpApplicationConfiguration"
170
+ ],
171
+ "parameters": [
172
+ {
173
+ "name": "IncludeLocalizationResources",
174
+ "in": "query",
175
+ "schema": {
176
+ "type": "boolean"
177
+ }
178
+ }
179
+ ],
180
+ "responses": {
181
+ "200": {
182
+ "description": "Success",
183
+ "content": {
184
+ "text/plain": {
185
+ "schema": {
186
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto"
187
+ }
188
+ },
189
+ "application/json": {
190
+ "schema": {
191
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto"
192
+ }
193
+ },
194
+ "text/json": {
195
+ "schema": {
196
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto"
197
+ }
198
+ }
199
+ }
200
+ },
201
+ "403": {
202
+ "description": "Forbidden",
203
+ "content": {
204
+ "text/plain": {
205
+ "schema": {
206
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
207
+ }
208
+ },
209
+ "application/json": {
210
+ "schema": {
211
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
212
+ }
213
+ },
214
+ "text/json": {
215
+ "schema": {
216
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
217
+ }
218
+ }
219
+ }
220
+ },
221
+ "401": {
222
+ "description": "Unauthorized",
223
+ "content": {
224
+ "text/plain": {
225
+ "schema": {
226
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
227
+ }
228
+ },
229
+ "application/json": {
230
+ "schema": {
231
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
232
+ }
233
+ },
234
+ "text/json": {
235
+ "schema": {
236
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
237
+ }
238
+ }
239
+ }
240
+ },
241
+ "400": {
242
+ "description": "Bad Request",
243
+ "content": {
244
+ "text/plain": {
245
+ "schema": {
246
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
247
+ }
248
+ },
249
+ "application/json": {
250
+ "schema": {
251
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
252
+ }
253
+ },
254
+ "text/json": {
255
+ "schema": {
256
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
257
+ }
258
+ }
259
+ }
260
+ },
261
+ "404": {
262
+ "description": "Not Found",
263
+ "content": {
264
+ "text/plain": {
265
+ "schema": {
266
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
267
+ }
268
+ },
269
+ "application/json": {
270
+ "schema": {
271
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
272
+ }
273
+ },
274
+ "text/json": {
275
+ "schema": {
276
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
277
+ }
278
+ }
279
+ }
280
+ },
281
+ "501": {
282
+ "description": "Server Error",
283
+ "content": {
284
+ "text/plain": {
285
+ "schema": {
286
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
287
+ }
288
+ },
289
+ "application/json": {
290
+ "schema": {
291
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
292
+ }
293
+ },
294
+ "text/json": {
295
+ "schema": {
296
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
297
+ }
298
+ }
299
+ }
300
+ },
301
+ "500": {
302
+ "description": "Server Error",
303
+ "content": {
304
+ "text/plain": {
305
+ "schema": {
306
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
307
+ }
308
+ },
309
+ "application/json": {
310
+ "schema": {
311
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
312
+ }
313
+ },
314
+ "text/json": {
315
+ "schema": {
316
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
317
+ }
318
+ }
319
+ }
320
+ }
321
+ }
322
+ }
323
+ },
324
+ "/api/abp/application-localization": {
325
+ "get": {
326
+ "tags": [
327
+ "AbpApplicationLocalization"
328
+ ],
329
+ "parameters": [
330
+ {
331
+ "name": "CultureName",
332
+ "in": "query",
333
+ "required": true,
334
+ "schema": {
335
+ "type": "string"
336
+ }
337
+ },
338
+ {
339
+ "name": "OnlyDynamics",
340
+ "in": "query",
341
+ "schema": {
342
+ "type": "boolean"
343
+ }
344
+ }
345
+ ],
346
+ "responses": {
347
+ "200": {
348
+ "description": "Success",
349
+ "content": {
350
+ "text/plain": {
351
+ "schema": {
352
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto"
353
+ }
354
+ },
355
+ "application/json": {
356
+ "schema": {
357
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto"
358
+ }
359
+ },
360
+ "text/json": {
361
+ "schema": {
362
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto"
363
+ }
364
+ }
365
+ }
366
+ },
367
+ "403": {
368
+ "description": "Forbidden",
369
+ "content": {
370
+ "text/plain": {
371
+ "schema": {
372
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
373
+ }
374
+ },
375
+ "application/json": {
376
+ "schema": {
377
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
378
+ }
379
+ },
380
+ "text/json": {
381
+ "schema": {
382
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
383
+ }
384
+ }
385
+ }
386
+ },
387
+ "401": {
388
+ "description": "Unauthorized",
389
+ "content": {
390
+ "text/plain": {
391
+ "schema": {
392
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
393
+ }
394
+ },
395
+ "application/json": {
396
+ "schema": {
397
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
398
+ }
399
+ },
400
+ "text/json": {
401
+ "schema": {
402
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
403
+ }
404
+ }
405
+ }
406
+ },
407
+ "400": {
408
+ "description": "Bad Request",
409
+ "content": {
410
+ "text/plain": {
411
+ "schema": {
412
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
413
+ }
414
+ },
415
+ "application/json": {
416
+ "schema": {
417
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
418
+ }
419
+ },
420
+ "text/json": {
421
+ "schema": {
422
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
423
+ }
424
+ }
425
+ }
426
+ },
427
+ "404": {
428
+ "description": "Not Found",
429
+ "content": {
430
+ "text/plain": {
431
+ "schema": {
432
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
433
+ }
434
+ },
435
+ "application/json": {
436
+ "schema": {
437
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
438
+ }
439
+ },
440
+ "text/json": {
441
+ "schema": {
442
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
443
+ }
444
+ }
445
+ }
446
+ },
447
+ "501": {
448
+ "description": "Server Error",
449
+ "content": {
450
+ "text/plain": {
451
+ "schema": {
452
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
453
+ }
454
+ },
455
+ "application/json": {
456
+ "schema": {
457
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
458
+ }
459
+ },
460
+ "text/json": {
461
+ "schema": {
462
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
463
+ }
464
+ }
465
+ }
466
+ },
467
+ "500": {
468
+ "description": "Server Error",
469
+ "content": {
470
+ "text/plain": {
471
+ "schema": {
472
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
473
+ }
474
+ },
475
+ "application/json": {
476
+ "schema": {
477
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
478
+ }
479
+ },
480
+ "text/json": {
481
+ "schema": {
482
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
483
+ }
484
+ }
485
+ }
486
+ }
487
+ }
488
+ }
489
+ },
490
+ "/api/ProjectService/project": {
491
+ "post": {
492
+ "tags": [
493
+ "Project"
494
+ ],
495
+ "requestBody": {
496
+ "content": {
497
+ "application/json": {
498
+ "schema": {
499
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.ProjectsDto.SaveProjectDto"
500
+ }
501
+ },
502
+ "text/json": {
503
+ "schema": {
504
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.ProjectsDto.SaveProjectDto"
505
+ }
506
+ },
507
+ "application/*+json": {
508
+ "schema": {
509
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.ProjectsDto.SaveProjectDto"
510
+ }
511
+ }
512
+ }
513
+ },
514
+ "responses": {
515
+ "200": {
516
+ "description": "Success",
517
+ "content": {
518
+ "text/plain": {
519
+ "schema": {
520
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Projects.ProjectDto"
521
+ }
522
+ },
523
+ "application/json": {
524
+ "schema": {
525
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Projects.ProjectDto"
526
+ }
527
+ },
528
+ "text/json": {
529
+ "schema": {
530
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Projects.ProjectDto"
531
+ }
532
+ }
533
+ }
534
+ },
535
+ "403": {
536
+ "description": "Forbidden",
537
+ "content": {
538
+ "text/plain": {
539
+ "schema": {
540
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
541
+ }
542
+ },
543
+ "application/json": {
544
+ "schema": {
545
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
546
+ }
547
+ },
548
+ "text/json": {
549
+ "schema": {
550
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
551
+ }
552
+ }
553
+ }
554
+ },
555
+ "401": {
556
+ "description": "Unauthorized",
557
+ "content": {
558
+ "text/plain": {
559
+ "schema": {
560
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
561
+ }
562
+ },
563
+ "application/json": {
564
+ "schema": {
565
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
566
+ }
567
+ },
568
+ "text/json": {
569
+ "schema": {
570
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
571
+ }
572
+ }
573
+ }
574
+ },
575
+ "400": {
576
+ "description": "Bad Request",
577
+ "content": {
578
+ "text/plain": {
579
+ "schema": {
580
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
581
+ }
582
+ },
583
+ "application/json": {
584
+ "schema": {
585
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
586
+ }
587
+ },
588
+ "text/json": {
589
+ "schema": {
590
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
591
+ }
592
+ }
593
+ }
594
+ },
595
+ "404": {
596
+ "description": "Not Found",
597
+ "content": {
598
+ "text/plain": {
599
+ "schema": {
600
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
601
+ }
602
+ },
603
+ "application/json": {
604
+ "schema": {
605
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
606
+ }
607
+ },
608
+ "text/json": {
609
+ "schema": {
610
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
611
+ }
612
+ }
613
+ }
614
+ },
615
+ "501": {
616
+ "description": "Server Error",
617
+ "content": {
618
+ "text/plain": {
619
+ "schema": {
620
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
621
+ }
622
+ },
623
+ "application/json": {
624
+ "schema": {
625
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
626
+ }
627
+ },
628
+ "text/json": {
629
+ "schema": {
630
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
631
+ }
632
+ }
633
+ }
634
+ },
635
+ "500": {
636
+ "description": "Server Error",
637
+ "content": {
638
+ "text/plain": {
639
+ "schema": {
640
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
641
+ }
642
+ },
643
+ "application/json": {
644
+ "schema": {
645
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
646
+ }
647
+ },
648
+ "text/json": {
649
+ "schema": {
650
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
651
+ }
652
+ }
653
+ }
654
+ }
655
+ }
656
+ },
657
+ "get": {
658
+ "tags": [
659
+ "Project"
660
+ ],
661
+ "parameters": [
662
+ {
663
+ "name": "Sorting",
664
+ "in": "query",
665
+ "schema": {
666
+ "type": "string"
667
+ }
668
+ },
669
+ {
670
+ "name": "SkipCount",
671
+ "in": "query",
672
+ "schema": {
673
+ "maximum": 2147483647,
674
+ "minimum": 0,
675
+ "type": "integer",
676
+ "format": "int32"
677
+ }
678
+ },
679
+ {
680
+ "name": "MaxResultCount",
681
+ "in": "query",
682
+ "schema": {
683
+ "maximum": 2147483647,
684
+ "minimum": 1,
685
+ "type": "integer",
686
+ "format": "int32"
687
+ }
688
+ }
689
+ ],
690
+ "responses": {
691
+ "200": {
692
+ "description": "Success",
693
+ "content": {
694
+ "text/plain": {
695
+ "schema": {
696
+ "$ref": "#/components/schemas/Volo.Abp.Application.Dtos.PagedResultDto`1[[UpWithCrowdDemo.ProjectService.Projects.ProjectDto, UpWithCrowdDemo.ProjectService.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]"
697
+ }
698
+ },
699
+ "application/json": {
700
+ "schema": {
701
+ "$ref": "#/components/schemas/Volo.Abp.Application.Dtos.PagedResultDto`1[[UpWithCrowdDemo.ProjectService.Projects.ProjectDto, UpWithCrowdDemo.ProjectService.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]"
702
+ }
703
+ },
704
+ "text/json": {
705
+ "schema": {
706
+ "$ref": "#/components/schemas/Volo.Abp.Application.Dtos.PagedResultDto`1[[UpWithCrowdDemo.ProjectService.Projects.ProjectDto, UpWithCrowdDemo.ProjectService.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]"
707
+ }
708
+ }
709
+ }
710
+ },
711
+ "403": {
712
+ "description": "Forbidden",
713
+ "content": {
714
+ "text/plain": {
715
+ "schema": {
716
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
717
+ }
718
+ },
719
+ "application/json": {
720
+ "schema": {
721
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
722
+ }
723
+ },
724
+ "text/json": {
725
+ "schema": {
726
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
727
+ }
728
+ }
729
+ }
730
+ },
731
+ "401": {
732
+ "description": "Unauthorized",
733
+ "content": {
734
+ "text/plain": {
735
+ "schema": {
736
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
737
+ }
738
+ },
739
+ "application/json": {
740
+ "schema": {
741
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
742
+ }
743
+ },
744
+ "text/json": {
745
+ "schema": {
746
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
747
+ }
748
+ }
749
+ }
750
+ },
751
+ "400": {
752
+ "description": "Bad Request",
753
+ "content": {
754
+ "text/plain": {
755
+ "schema": {
756
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
757
+ }
758
+ },
759
+ "application/json": {
760
+ "schema": {
761
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
762
+ }
763
+ },
764
+ "text/json": {
765
+ "schema": {
766
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
767
+ }
768
+ }
769
+ }
770
+ },
771
+ "404": {
772
+ "description": "Not Found",
773
+ "content": {
774
+ "text/plain": {
775
+ "schema": {
776
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
777
+ }
778
+ },
779
+ "application/json": {
780
+ "schema": {
781
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
782
+ }
783
+ },
784
+ "text/json": {
785
+ "schema": {
786
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
787
+ }
788
+ }
789
+ }
790
+ },
791
+ "501": {
792
+ "description": "Server Error",
793
+ "content": {
794
+ "text/plain": {
795
+ "schema": {
796
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
797
+ }
798
+ },
799
+ "application/json": {
800
+ "schema": {
801
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
802
+ }
803
+ },
804
+ "text/json": {
805
+ "schema": {
806
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
807
+ }
808
+ }
809
+ }
810
+ },
811
+ "500": {
812
+ "description": "Server Error",
813
+ "content": {
814
+ "text/plain": {
815
+ "schema": {
816
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
817
+ }
818
+ },
819
+ "application/json": {
820
+ "schema": {
821
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
822
+ }
823
+ },
824
+ "text/json": {
825
+ "schema": {
826
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
827
+ }
828
+ }
829
+ }
830
+ }
831
+ }
832
+ }
833
+ },
834
+ "/api/ProjectService/project/{id}": {
835
+ "delete": {
836
+ "tags": [
837
+ "Project"
838
+ ],
839
+ "parameters": [
840
+ {
841
+ "name": "id",
842
+ "in": "path",
843
+ "required": true,
844
+ "schema": {
845
+ "type": "string",
846
+ "format": "uuid"
847
+ }
848
+ }
849
+ ],
850
+ "responses": {
851
+ "200": {
852
+ "description": "Success"
853
+ },
854
+ "403": {
855
+ "description": "Forbidden",
856
+ "content": {
857
+ "text/plain": {
858
+ "schema": {
859
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
860
+ }
861
+ },
862
+ "application/json": {
863
+ "schema": {
864
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
865
+ }
866
+ },
867
+ "text/json": {
868
+ "schema": {
869
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
870
+ }
871
+ }
872
+ }
873
+ },
874
+ "401": {
875
+ "description": "Unauthorized",
876
+ "content": {
877
+ "text/plain": {
878
+ "schema": {
879
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
880
+ }
881
+ },
882
+ "application/json": {
883
+ "schema": {
884
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
885
+ }
886
+ },
887
+ "text/json": {
888
+ "schema": {
889
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
890
+ }
891
+ }
892
+ }
893
+ },
894
+ "400": {
895
+ "description": "Bad Request",
896
+ "content": {
897
+ "text/plain": {
898
+ "schema": {
899
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
900
+ }
901
+ },
902
+ "application/json": {
903
+ "schema": {
904
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
905
+ }
906
+ },
907
+ "text/json": {
908
+ "schema": {
909
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
910
+ }
911
+ }
912
+ }
913
+ },
914
+ "404": {
915
+ "description": "Not Found",
916
+ "content": {
917
+ "text/plain": {
918
+ "schema": {
919
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
920
+ }
921
+ },
922
+ "application/json": {
923
+ "schema": {
924
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
925
+ }
926
+ },
927
+ "text/json": {
928
+ "schema": {
929
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
930
+ }
931
+ }
932
+ }
933
+ },
934
+ "501": {
935
+ "description": "Server Error",
936
+ "content": {
937
+ "text/plain": {
938
+ "schema": {
939
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
940
+ }
941
+ },
942
+ "application/json": {
943
+ "schema": {
944
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
945
+ }
946
+ },
947
+ "text/json": {
948
+ "schema": {
949
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
950
+ }
951
+ }
952
+ }
953
+ },
954
+ "500": {
955
+ "description": "Server Error",
956
+ "content": {
957
+ "text/plain": {
958
+ "schema": {
959
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
960
+ }
961
+ },
962
+ "application/json": {
963
+ "schema": {
964
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
965
+ }
966
+ },
967
+ "text/json": {
968
+ "schema": {
969
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
970
+ }
971
+ }
972
+ }
973
+ }
974
+ }
975
+ },
976
+ "get": {
977
+ "tags": [
978
+ "Project"
979
+ ],
980
+ "parameters": [
981
+ {
982
+ "name": "id",
983
+ "in": "path",
984
+ "required": true,
985
+ "schema": {
986
+ "type": "string",
987
+ "format": "uuid"
988
+ }
989
+ }
990
+ ],
991
+ "responses": {
992
+ "200": {
993
+ "description": "Success",
994
+ "content": {
995
+ "text/plain": {
996
+ "schema": {
997
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Projects.ProjectDto"
998
+ }
999
+ },
1000
+ "application/json": {
1001
+ "schema": {
1002
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Projects.ProjectDto"
1003
+ }
1004
+ },
1005
+ "text/json": {
1006
+ "schema": {
1007
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Projects.ProjectDto"
1008
+ }
1009
+ }
1010
+ }
1011
+ },
1012
+ "403": {
1013
+ "description": "Forbidden",
1014
+ "content": {
1015
+ "text/plain": {
1016
+ "schema": {
1017
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1018
+ }
1019
+ },
1020
+ "application/json": {
1021
+ "schema": {
1022
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1023
+ }
1024
+ },
1025
+ "text/json": {
1026
+ "schema": {
1027
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1028
+ }
1029
+ }
1030
+ }
1031
+ },
1032
+ "401": {
1033
+ "description": "Unauthorized",
1034
+ "content": {
1035
+ "text/plain": {
1036
+ "schema": {
1037
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1038
+ }
1039
+ },
1040
+ "application/json": {
1041
+ "schema": {
1042
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1043
+ }
1044
+ },
1045
+ "text/json": {
1046
+ "schema": {
1047
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1048
+ }
1049
+ }
1050
+ }
1051
+ },
1052
+ "400": {
1053
+ "description": "Bad Request",
1054
+ "content": {
1055
+ "text/plain": {
1056
+ "schema": {
1057
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1058
+ }
1059
+ },
1060
+ "application/json": {
1061
+ "schema": {
1062
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1063
+ }
1064
+ },
1065
+ "text/json": {
1066
+ "schema": {
1067
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1068
+ }
1069
+ }
1070
+ }
1071
+ },
1072
+ "404": {
1073
+ "description": "Not Found",
1074
+ "content": {
1075
+ "text/plain": {
1076
+ "schema": {
1077
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1078
+ }
1079
+ },
1080
+ "application/json": {
1081
+ "schema": {
1082
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1083
+ }
1084
+ },
1085
+ "text/json": {
1086
+ "schema": {
1087
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1088
+ }
1089
+ }
1090
+ }
1091
+ },
1092
+ "501": {
1093
+ "description": "Server Error",
1094
+ "content": {
1095
+ "text/plain": {
1096
+ "schema": {
1097
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1098
+ }
1099
+ },
1100
+ "application/json": {
1101
+ "schema": {
1102
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1103
+ }
1104
+ },
1105
+ "text/json": {
1106
+ "schema": {
1107
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1108
+ }
1109
+ }
1110
+ }
1111
+ },
1112
+ "500": {
1113
+ "description": "Server Error",
1114
+ "content": {
1115
+ "text/plain": {
1116
+ "schema": {
1117
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1118
+ }
1119
+ },
1120
+ "application/json": {
1121
+ "schema": {
1122
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1123
+ }
1124
+ },
1125
+ "text/json": {
1126
+ "schema": {
1127
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1128
+ }
1129
+ }
1130
+ }
1131
+ }
1132
+ }
1133
+ },
1134
+ "put": {
1135
+ "tags": [
1136
+ "Project"
1137
+ ],
1138
+ "parameters": [
1139
+ {
1140
+ "name": "id",
1141
+ "in": "path",
1142
+ "required": true,
1143
+ "schema": {
1144
+ "type": "string",
1145
+ "format": "uuid"
1146
+ }
1147
+ }
1148
+ ],
1149
+ "requestBody": {
1150
+ "content": {
1151
+ "application/json": {
1152
+ "schema": {
1153
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.ProjectsDto.UpdateProjectDto"
1154
+ }
1155
+ },
1156
+ "text/json": {
1157
+ "schema": {
1158
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.ProjectsDto.UpdateProjectDto"
1159
+ }
1160
+ },
1161
+ "application/*+json": {
1162
+ "schema": {
1163
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.ProjectsDto.UpdateProjectDto"
1164
+ }
1165
+ }
1166
+ }
1167
+ },
1168
+ "responses": {
1169
+ "200": {
1170
+ "description": "Success",
1171
+ "content": {
1172
+ "text/plain": {
1173
+ "schema": {
1174
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Projects.ProjectDto"
1175
+ }
1176
+ },
1177
+ "application/json": {
1178
+ "schema": {
1179
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Projects.ProjectDto"
1180
+ }
1181
+ },
1182
+ "text/json": {
1183
+ "schema": {
1184
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Projects.ProjectDto"
1185
+ }
1186
+ }
1187
+ }
1188
+ },
1189
+ "403": {
1190
+ "description": "Forbidden",
1191
+ "content": {
1192
+ "text/plain": {
1193
+ "schema": {
1194
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1195
+ }
1196
+ },
1197
+ "application/json": {
1198
+ "schema": {
1199
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1200
+ }
1201
+ },
1202
+ "text/json": {
1203
+ "schema": {
1204
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1205
+ }
1206
+ }
1207
+ }
1208
+ },
1209
+ "401": {
1210
+ "description": "Unauthorized",
1211
+ "content": {
1212
+ "text/plain": {
1213
+ "schema": {
1214
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1215
+ }
1216
+ },
1217
+ "application/json": {
1218
+ "schema": {
1219
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1220
+ }
1221
+ },
1222
+ "text/json": {
1223
+ "schema": {
1224
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1225
+ }
1226
+ }
1227
+ }
1228
+ },
1229
+ "400": {
1230
+ "description": "Bad Request",
1231
+ "content": {
1232
+ "text/plain": {
1233
+ "schema": {
1234
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1235
+ }
1236
+ },
1237
+ "application/json": {
1238
+ "schema": {
1239
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1240
+ }
1241
+ },
1242
+ "text/json": {
1243
+ "schema": {
1244
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1245
+ }
1246
+ }
1247
+ }
1248
+ },
1249
+ "404": {
1250
+ "description": "Not Found",
1251
+ "content": {
1252
+ "text/plain": {
1253
+ "schema": {
1254
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1255
+ }
1256
+ },
1257
+ "application/json": {
1258
+ "schema": {
1259
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1260
+ }
1261
+ },
1262
+ "text/json": {
1263
+ "schema": {
1264
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1265
+ }
1266
+ }
1267
+ }
1268
+ },
1269
+ "501": {
1270
+ "description": "Server Error",
1271
+ "content": {
1272
+ "text/plain": {
1273
+ "schema": {
1274
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1275
+ }
1276
+ },
1277
+ "application/json": {
1278
+ "schema": {
1279
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1280
+ }
1281
+ },
1282
+ "text/json": {
1283
+ "schema": {
1284
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1285
+ }
1286
+ }
1287
+ }
1288
+ },
1289
+ "500": {
1290
+ "description": "Server Error",
1291
+ "content": {
1292
+ "text/plain": {
1293
+ "schema": {
1294
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1295
+ }
1296
+ },
1297
+ "application/json": {
1298
+ "schema": {
1299
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1300
+ }
1301
+ },
1302
+ "text/json": {
1303
+ "schema": {
1304
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1305
+ }
1306
+ }
1307
+ }
1308
+ }
1309
+ }
1310
+ }
1311
+ },
1312
+ "/api/SampleService/sample": {
1313
+ "get": {
1314
+ "tags": [
1315
+ "SampleService"
1316
+ ],
1317
+ "responses": {
1318
+ "200": {
1319
+ "description": "Success",
1320
+ "content": {
1321
+ "text/plain": {
1322
+ "schema": {
1323
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Samples.SampleDto"
1324
+ }
1325
+ },
1326
+ "application/json": {
1327
+ "schema": {
1328
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Samples.SampleDto"
1329
+ }
1330
+ },
1331
+ "text/json": {
1332
+ "schema": {
1333
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Samples.SampleDto"
1334
+ }
1335
+ }
1336
+ }
1337
+ },
1338
+ "403": {
1339
+ "description": "Forbidden",
1340
+ "content": {
1341
+ "text/plain": {
1342
+ "schema": {
1343
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1344
+ }
1345
+ },
1346
+ "application/json": {
1347
+ "schema": {
1348
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1349
+ }
1350
+ },
1351
+ "text/json": {
1352
+ "schema": {
1353
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1354
+ }
1355
+ }
1356
+ }
1357
+ },
1358
+ "401": {
1359
+ "description": "Unauthorized",
1360
+ "content": {
1361
+ "text/plain": {
1362
+ "schema": {
1363
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1364
+ }
1365
+ },
1366
+ "application/json": {
1367
+ "schema": {
1368
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1369
+ }
1370
+ },
1371
+ "text/json": {
1372
+ "schema": {
1373
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1374
+ }
1375
+ }
1376
+ }
1377
+ },
1378
+ "400": {
1379
+ "description": "Bad Request",
1380
+ "content": {
1381
+ "text/plain": {
1382
+ "schema": {
1383
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1384
+ }
1385
+ },
1386
+ "application/json": {
1387
+ "schema": {
1388
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1389
+ }
1390
+ },
1391
+ "text/json": {
1392
+ "schema": {
1393
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1394
+ }
1395
+ }
1396
+ }
1397
+ },
1398
+ "404": {
1399
+ "description": "Not Found",
1400
+ "content": {
1401
+ "text/plain": {
1402
+ "schema": {
1403
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1404
+ }
1405
+ },
1406
+ "application/json": {
1407
+ "schema": {
1408
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1409
+ }
1410
+ },
1411
+ "text/json": {
1412
+ "schema": {
1413
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1414
+ }
1415
+ }
1416
+ }
1417
+ },
1418
+ "501": {
1419
+ "description": "Server Error",
1420
+ "content": {
1421
+ "text/plain": {
1422
+ "schema": {
1423
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1424
+ }
1425
+ },
1426
+ "application/json": {
1427
+ "schema": {
1428
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1429
+ }
1430
+ },
1431
+ "text/json": {
1432
+ "schema": {
1433
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1434
+ }
1435
+ }
1436
+ }
1437
+ },
1438
+ "500": {
1439
+ "description": "Server Error",
1440
+ "content": {
1441
+ "text/plain": {
1442
+ "schema": {
1443
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1444
+ }
1445
+ },
1446
+ "application/json": {
1447
+ "schema": {
1448
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1449
+ }
1450
+ },
1451
+ "text/json": {
1452
+ "schema": {
1453
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1454
+ }
1455
+ }
1456
+ }
1457
+ }
1458
+ }
1459
+ }
1460
+ },
1461
+ "/api/SampleService/sample/authorized": {
1462
+ "get": {
1463
+ "tags": [
1464
+ "SampleService"
1465
+ ],
1466
+ "responses": {
1467
+ "200": {
1468
+ "description": "Success",
1469
+ "content": {
1470
+ "text/plain": {
1471
+ "schema": {
1472
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Samples.SampleDto"
1473
+ }
1474
+ },
1475
+ "application/json": {
1476
+ "schema": {
1477
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Samples.SampleDto"
1478
+ }
1479
+ },
1480
+ "text/json": {
1481
+ "schema": {
1482
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Samples.SampleDto"
1483
+ }
1484
+ }
1485
+ }
1486
+ },
1487
+ "403": {
1488
+ "description": "Forbidden",
1489
+ "content": {
1490
+ "text/plain": {
1491
+ "schema": {
1492
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1493
+ }
1494
+ },
1495
+ "application/json": {
1496
+ "schema": {
1497
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1498
+ }
1499
+ },
1500
+ "text/json": {
1501
+ "schema": {
1502
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1503
+ }
1504
+ }
1505
+ }
1506
+ },
1507
+ "401": {
1508
+ "description": "Unauthorized",
1509
+ "content": {
1510
+ "text/plain": {
1511
+ "schema": {
1512
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1513
+ }
1514
+ },
1515
+ "application/json": {
1516
+ "schema": {
1517
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1518
+ }
1519
+ },
1520
+ "text/json": {
1521
+ "schema": {
1522
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1523
+ }
1524
+ }
1525
+ }
1526
+ },
1527
+ "400": {
1528
+ "description": "Bad Request",
1529
+ "content": {
1530
+ "text/plain": {
1531
+ "schema": {
1532
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1533
+ }
1534
+ },
1535
+ "application/json": {
1536
+ "schema": {
1537
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1538
+ }
1539
+ },
1540
+ "text/json": {
1541
+ "schema": {
1542
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1543
+ }
1544
+ }
1545
+ }
1546
+ },
1547
+ "404": {
1548
+ "description": "Not Found",
1549
+ "content": {
1550
+ "text/plain": {
1551
+ "schema": {
1552
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1553
+ }
1554
+ },
1555
+ "application/json": {
1556
+ "schema": {
1557
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1558
+ }
1559
+ },
1560
+ "text/json": {
1561
+ "schema": {
1562
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1563
+ }
1564
+ }
1565
+ }
1566
+ },
1567
+ "501": {
1568
+ "description": "Server Error",
1569
+ "content": {
1570
+ "text/plain": {
1571
+ "schema": {
1572
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1573
+ }
1574
+ },
1575
+ "application/json": {
1576
+ "schema": {
1577
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1578
+ }
1579
+ },
1580
+ "text/json": {
1581
+ "schema": {
1582
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1583
+ }
1584
+ }
1585
+ }
1586
+ },
1587
+ "500": {
1588
+ "description": "Server Error",
1589
+ "content": {
1590
+ "text/plain": {
1591
+ "schema": {
1592
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1593
+ }
1594
+ },
1595
+ "application/json": {
1596
+ "schema": {
1597
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1598
+ }
1599
+ },
1600
+ "text/json": {
1601
+ "schema": {
1602
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1603
+ }
1604
+ }
1605
+ }
1606
+ }
1607
+ }
1608
+ }
1609
+ }
1610
+ },
1611
+ "components": {
1612
+ "schemas": {
1613
+ "UpWithCrowdDemo.ProjectService.Projects.ProjectDto": {
1614
+ "type": "object",
1615
+ "properties": {
1616
+ "id": {
1617
+ "type": "string",
1618
+ "format": "uuid"
1619
+ },
1620
+ "projectName": {
1621
+ "type": "string",
1622
+ "nullable": true
1623
+ },
1624
+ "projectDefinition": {
1625
+ "type": "string",
1626
+ "nullable": true
1627
+ },
1628
+ "cashValue": {
1629
+ "type": "integer",
1630
+ "format": "int64"
1631
+ },
1632
+ "fundCollectionType": {
1633
+ "type": "string",
1634
+ "nullable": true
1635
+ },
1636
+ "additionalFundRate": {
1637
+ "type": "string",
1638
+ "nullable": true
1639
+ },
1640
+ "qualifiedFundRate": {
1641
+ "type": "string",
1642
+ "nullable": true
1643
+ },
1644
+ "fundNominalAmount": {
1645
+ "type": "integer",
1646
+ "format": "int64"
1647
+ },
1648
+ "fundableAmount": {
1649
+ "type": "integer",
1650
+ "format": "int64"
1651
+ },
1652
+ "overFunding": {
1653
+ "type": "string"
1654
+ },
1655
+ "privilege": {
1656
+ "type": "string",
1657
+ "nullable": true
1658
+ },
1659
+ "projectStartDate": {
1660
+ "type": "string",
1661
+ "format": "date-time"
1662
+ },
1663
+ "projectEndDate": {
1664
+ "type": "string",
1665
+ "format": "date-time"
1666
+ }
1667
+ },
1668
+ "additionalProperties": false
1669
+ },
1670
+ "UpWithCrowdDemo.ProjectService.ProjectsDto.SaveProjectDto": {
1671
+ "type": "object",
1672
+ "properties": {
1673
+ "projectName": {
1674
+ "type": "string",
1675
+ "nullable": true
1676
+ },
1677
+ "projectDefinition": {
1678
+ "type": "string",
1679
+ "nullable": true
1680
+ },
1681
+ "cashValue": {
1682
+ "type": "integer",
1683
+ "format": "int64"
1684
+ },
1685
+ "additionalFundRate": {
1686
+ "type": "string",
1687
+ "nullable": true
1688
+ },
1689
+ "qualifiedFundRate": {
1690
+ "type": "string",
1691
+ "nullable": true
1692
+ },
1693
+ "fundNominalAmount": {
1694
+ "type": "integer",
1695
+ "format": "int64"
1696
+ },
1697
+ "fundableAmount": {
1698
+ "type": "integer",
1699
+ "format": "int64"
1700
+ },
1701
+ "overFunding": {
1702
+ "type": "string"
1703
+ },
1704
+ "privilege": {
1705
+ "type": "string",
1706
+ "nullable": true
1707
+ },
1708
+ "projectStartDate": {
1709
+ "type": "string",
1710
+ "format": "date-time"
1711
+ },
1712
+ "projectEndDate": {
1713
+ "type": "string",
1714
+ "format": "date-time"
1715
+ },
1716
+ "fundCollectionType": {
1717
+ "type": "string",
1718
+ "nullable": true
1719
+ }
1720
+ },
1721
+ "additionalProperties": false
1722
+ },
1723
+ "UpWithCrowdDemo.ProjectService.ProjectsDto.UpdateProjectDto": {
1724
+ "type": "object",
1725
+ "properties": {
1726
+ "projectName": {
1727
+ "type": "string",
1728
+ "nullable": true
1729
+ },
1730
+ "projectDefinition": {
1731
+ "type": "string",
1732
+ "nullable": true
1733
+ },
1734
+ "cashValue": {
1735
+ "type": "integer",
1736
+ "format": "int64"
1737
+ },
1738
+ "additionalFundRate": {
1739
+ "type": "string",
1740
+ "nullable": true
1741
+ },
1742
+ "qualifiedFundRate": {
1743
+ "type": "string",
1744
+ "nullable": true
1745
+ },
1746
+ "fundNominalAmount": {
1747
+ "type": "integer",
1748
+ "format": "int64"
1749
+ },
1750
+ "fundableAmount": {
1751
+ "type": "integer",
1752
+ "format": "int64"
1753
+ },
1754
+ "overFunding": {
1755
+ "type": "string"
1756
+ },
1757
+ "privilege": {
1758
+ "type": "string",
1759
+ "nullable": true
1760
+ },
1761
+ "projectStartDate": {
1762
+ "type": "string",
1763
+ "format": "date-time"
1764
+ },
1765
+ "projectEndDate": {
1766
+ "type": "string",
1767
+ "format": "date-time"
1768
+ },
1769
+ "projectId": {
1770
+ "type": "string",
1771
+ "format": "uuid"
1772
+ },
1773
+ "fundCollectType": {
1774
+ "type": "string",
1775
+ "nullable": true
1776
+ }
1777
+ },
1778
+ "additionalProperties": false
1779
+ },
1780
+ "UpWithCrowdDemo.ProjectService.Samples.SampleDto": {
1781
+ "type": "object",
1782
+ "properties": {
1783
+ "value": {
1784
+ "type": "integer",
1785
+ "format": "int32"
1786
+ }
1787
+ },
1788
+ "additionalProperties": false
1789
+ },
1790
+ "Volo.Abp.Application.Dtos.PagedResultDto`1[[UpWithCrowdDemo.ProjectService.Projects.ProjectDto, UpWithCrowdDemo.ProjectService.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]": {
1791
+ "type": "object",
1792
+ "properties": {
1793
+ "items": {
1794
+ "type": "array",
1795
+ "items": {
1796
+ "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Projects.ProjectDto"
1797
+ },
1798
+ "nullable": true
1799
+ },
1800
+ "totalCount": {
1801
+ "type": "integer",
1802
+ "format": "int64"
1803
+ }
1804
+ },
1805
+ "additionalProperties": false
1806
+ },
1807
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationAuthConfigurationDto": {
1808
+ "type": "object",
1809
+ "properties": {
1810
+ "grantedPolicies": {
1811
+ "type": "object",
1812
+ "additionalProperties": {
1813
+ "type": "boolean"
1814
+ },
1815
+ "nullable": true
1816
+ }
1817
+ },
1818
+ "additionalProperties": false
1819
+ },
1820
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto": {
1821
+ "type": "object",
1822
+ "properties": {
1823
+ "localization": {
1824
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationConfigurationDto"
1825
+ },
1826
+ "auth": {
1827
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationAuthConfigurationDto"
1828
+ },
1829
+ "setting": {
1830
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationSettingConfigurationDto"
1831
+ },
1832
+ "currentUser": {
1833
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentUserDto"
1834
+ },
1835
+ "features": {
1836
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationFeatureConfigurationDto"
1837
+ },
1838
+ "globalFeatures": {
1839
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationGlobalFeatureConfigurationDto"
1840
+ },
1841
+ "multiTenancy": {
1842
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.MultiTenancy.MultiTenancyInfoDto"
1843
+ },
1844
+ "currentTenant": {
1845
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.MultiTenancy.CurrentTenantDto"
1846
+ },
1847
+ "timing": {
1848
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimingDto"
1849
+ },
1850
+ "clock": {
1851
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClockDto"
1852
+ },
1853
+ "objectExtensions": {
1854
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ObjectExtensionsDto"
1855
+ },
1856
+ "extraProperties": {
1857
+ "type": "object",
1858
+ "additionalProperties": { },
1859
+ "nullable": true
1860
+ }
1861
+ },
1862
+ "additionalProperties": false
1863
+ },
1864
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationFeatureConfigurationDto": {
1865
+ "type": "object",
1866
+ "properties": {
1867
+ "values": {
1868
+ "type": "object",
1869
+ "additionalProperties": {
1870
+ "type": "string",
1871
+ "nullable": true
1872
+ },
1873
+ "nullable": true
1874
+ }
1875
+ },
1876
+ "additionalProperties": false
1877
+ },
1878
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationGlobalFeatureConfigurationDto": {
1879
+ "type": "object",
1880
+ "properties": {
1881
+ "enabledFeatures": {
1882
+ "uniqueItems": true,
1883
+ "type": "array",
1884
+ "items": {
1885
+ "type": "string"
1886
+ },
1887
+ "nullable": true
1888
+ }
1889
+ },
1890
+ "additionalProperties": false
1891
+ },
1892
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationConfigurationDto": {
1893
+ "type": "object",
1894
+ "properties": {
1895
+ "values": {
1896
+ "type": "object",
1897
+ "additionalProperties": {
1898
+ "type": "object",
1899
+ "additionalProperties": {
1900
+ "type": "string"
1901
+ }
1902
+ },
1903
+ "nullable": true
1904
+ },
1905
+ "resources": {
1906
+ "type": "object",
1907
+ "additionalProperties": {
1908
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto"
1909
+ },
1910
+ "nullable": true
1911
+ },
1912
+ "languages": {
1913
+ "type": "array",
1914
+ "items": {
1915
+ "$ref": "#/components/schemas/Volo.Abp.Localization.LanguageInfo"
1916
+ },
1917
+ "nullable": true
1918
+ },
1919
+ "currentCulture": {
1920
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentCultureDto"
1921
+ },
1922
+ "defaultResourceName": {
1923
+ "type": "string",
1924
+ "nullable": true
1925
+ },
1926
+ "languagesMap": {
1927
+ "type": "object",
1928
+ "additionalProperties": {
1929
+ "type": "array",
1930
+ "items": {
1931
+ "$ref": "#/components/schemas/Volo.Abp.NameValue"
1932
+ }
1933
+ },
1934
+ "nullable": true
1935
+ },
1936
+ "languageFilesMap": {
1937
+ "type": "object",
1938
+ "additionalProperties": {
1939
+ "type": "array",
1940
+ "items": {
1941
+ "$ref": "#/components/schemas/Volo.Abp.NameValue"
1942
+ }
1943
+ },
1944
+ "nullable": true
1945
+ }
1946
+ },
1947
+ "additionalProperties": false
1948
+ },
1949
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto": {
1950
+ "type": "object",
1951
+ "properties": {
1952
+ "resources": {
1953
+ "type": "object",
1954
+ "additionalProperties": {
1955
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto"
1956
+ },
1957
+ "nullable": true
1958
+ }
1959
+ },
1960
+ "additionalProperties": false
1961
+ },
1962
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto": {
1963
+ "type": "object",
1964
+ "properties": {
1965
+ "texts": {
1966
+ "type": "object",
1967
+ "additionalProperties": {
1968
+ "type": "string"
1969
+ },
1970
+ "nullable": true
1971
+ },
1972
+ "baseResources": {
1973
+ "type": "array",
1974
+ "items": {
1975
+ "type": "string"
1976
+ },
1977
+ "nullable": true
1978
+ }
1979
+ },
1980
+ "additionalProperties": false
1981
+ },
1982
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationSettingConfigurationDto": {
1983
+ "type": "object",
1984
+ "properties": {
1985
+ "values": {
1986
+ "type": "object",
1987
+ "additionalProperties": {
1988
+ "type": "string",
1989
+ "nullable": true
1990
+ },
1991
+ "nullable": true
1992
+ }
1993
+ },
1994
+ "additionalProperties": false
1995
+ },
1996
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClockDto": {
1997
+ "type": "object",
1998
+ "properties": {
1999
+ "kind": {
2000
+ "type": "string",
2001
+ "nullable": true
2002
+ }
2003
+ },
2004
+ "additionalProperties": false
2005
+ },
2006
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentCultureDto": {
2007
+ "type": "object",
2008
+ "properties": {
2009
+ "displayName": {
2010
+ "type": "string",
2011
+ "nullable": true
2012
+ },
2013
+ "englishName": {
2014
+ "type": "string",
2015
+ "nullable": true
2016
+ },
2017
+ "threeLetterIsoLanguageName": {
2018
+ "type": "string",
2019
+ "nullable": true
2020
+ },
2021
+ "twoLetterIsoLanguageName": {
2022
+ "type": "string",
2023
+ "nullable": true
2024
+ },
2025
+ "isRightToLeft": {
2026
+ "type": "boolean"
2027
+ },
2028
+ "cultureName": {
2029
+ "type": "string",
2030
+ "nullable": true
2031
+ },
2032
+ "name": {
2033
+ "type": "string",
2034
+ "nullable": true
2035
+ },
2036
+ "nativeName": {
2037
+ "type": "string",
2038
+ "nullable": true
2039
+ },
2040
+ "dateTimeFormat": {
2041
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.DateTimeFormatDto"
2042
+ }
2043
+ },
2044
+ "additionalProperties": false
2045
+ },
2046
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentUserDto": {
2047
+ "type": "object",
2048
+ "properties": {
2049
+ "isAuthenticated": {
2050
+ "type": "boolean"
2051
+ },
2052
+ "id": {
2053
+ "type": "string",
2054
+ "format": "uuid",
2055
+ "nullable": true
2056
+ },
2057
+ "tenantId": {
2058
+ "type": "string",
2059
+ "format": "uuid",
2060
+ "nullable": true
2061
+ },
2062
+ "impersonatorUserId": {
2063
+ "type": "string",
2064
+ "format": "uuid",
2065
+ "nullable": true
2066
+ },
2067
+ "impersonatorTenantId": {
2068
+ "type": "string",
2069
+ "format": "uuid",
2070
+ "nullable": true
2071
+ },
2072
+ "impersonatorUserName": {
2073
+ "type": "string",
2074
+ "nullable": true
2075
+ },
2076
+ "impersonatorTenantName": {
2077
+ "type": "string",
2078
+ "nullable": true
2079
+ },
2080
+ "userName": {
2081
+ "type": "string",
2082
+ "nullable": true
2083
+ },
2084
+ "name": {
2085
+ "type": "string",
2086
+ "nullable": true
2087
+ },
2088
+ "surName": {
2089
+ "type": "string",
2090
+ "nullable": true
2091
+ },
2092
+ "email": {
2093
+ "type": "string",
2094
+ "nullable": true
2095
+ },
2096
+ "emailVerified": {
2097
+ "type": "boolean"
2098
+ },
2099
+ "phoneNumber": {
2100
+ "type": "string",
2101
+ "nullable": true
2102
+ },
2103
+ "phoneNumberVerified": {
2104
+ "type": "boolean"
2105
+ },
2106
+ "roles": {
2107
+ "type": "array",
2108
+ "items": {
2109
+ "type": "string"
2110
+ },
2111
+ "nullable": true
2112
+ }
2113
+ },
2114
+ "additionalProperties": false
2115
+ },
2116
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.DateTimeFormatDto": {
2117
+ "type": "object",
2118
+ "properties": {
2119
+ "calendarAlgorithmType": {
2120
+ "type": "string",
2121
+ "nullable": true
2122
+ },
2123
+ "dateTimeFormatLong": {
2124
+ "type": "string",
2125
+ "nullable": true
2126
+ },
2127
+ "shortDatePattern": {
2128
+ "type": "string",
2129
+ "nullable": true
2130
+ },
2131
+ "fullDateTimePattern": {
2132
+ "type": "string",
2133
+ "nullable": true
2134
+ },
2135
+ "dateSeparator": {
2136
+ "type": "string",
2137
+ "nullable": true
2138
+ },
2139
+ "shortTimePattern": {
2140
+ "type": "string",
2141
+ "nullable": true
2142
+ },
2143
+ "longTimePattern": {
2144
+ "type": "string",
2145
+ "nullable": true
2146
+ }
2147
+ },
2148
+ "additionalProperties": false
2149
+ },
2150
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.IanaTimeZone": {
2151
+ "type": "object",
2152
+ "properties": {
2153
+ "timeZoneName": {
2154
+ "type": "string",
2155
+ "nullable": true
2156
+ }
2157
+ },
2158
+ "additionalProperties": false
2159
+ },
2160
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.EntityExtensionDto": {
2161
+ "type": "object",
2162
+ "properties": {
2163
+ "properties": {
2164
+ "type": "object",
2165
+ "additionalProperties": {
2166
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyDto"
2167
+ },
2168
+ "nullable": true
2169
+ },
2170
+ "configuration": {
2171
+ "type": "object",
2172
+ "additionalProperties": { },
2173
+ "nullable": true
2174
+ }
2175
+ },
2176
+ "additionalProperties": false
2177
+ },
2178
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumDto": {
2179
+ "type": "object",
2180
+ "properties": {
2181
+ "fields": {
2182
+ "type": "array",
2183
+ "items": {
2184
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumFieldDto"
2185
+ },
2186
+ "nullable": true
2187
+ },
2188
+ "localizationResource": {
2189
+ "type": "string",
2190
+ "nullable": true
2191
+ }
2192
+ },
2193
+ "additionalProperties": false
2194
+ },
2195
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumFieldDto": {
2196
+ "type": "object",
2197
+ "properties": {
2198
+ "name": {
2199
+ "type": "string",
2200
+ "nullable": true
2201
+ },
2202
+ "value": {
2203
+ "nullable": true
2204
+ }
2205
+ },
2206
+ "additionalProperties": false
2207
+ },
2208
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiCreateDto": {
2209
+ "type": "object",
2210
+ "properties": {
2211
+ "isAvailable": {
2212
+ "type": "boolean"
2213
+ }
2214
+ },
2215
+ "additionalProperties": false
2216
+ },
2217
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiDto": {
2218
+ "type": "object",
2219
+ "properties": {
2220
+ "onGet": {
2221
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiGetDto"
2222
+ },
2223
+ "onCreate": {
2224
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiCreateDto"
2225
+ },
2226
+ "onUpdate": {
2227
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiUpdateDto"
2228
+ }
2229
+ },
2230
+ "additionalProperties": false
2231
+ },
2232
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiGetDto": {
2233
+ "type": "object",
2234
+ "properties": {
2235
+ "isAvailable": {
2236
+ "type": "boolean"
2237
+ }
2238
+ },
2239
+ "additionalProperties": false
2240
+ },
2241
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiUpdateDto": {
2242
+ "type": "object",
2243
+ "properties": {
2244
+ "isAvailable": {
2245
+ "type": "boolean"
2246
+ }
2247
+ },
2248
+ "additionalProperties": false
2249
+ },
2250
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyAttributeDto": {
2251
+ "type": "object",
2252
+ "properties": {
2253
+ "typeSimple": {
2254
+ "type": "string",
2255
+ "nullable": true
2256
+ },
2257
+ "config": {
2258
+ "type": "object",
2259
+ "additionalProperties": { },
2260
+ "nullable": true
2261
+ }
2262
+ },
2263
+ "additionalProperties": false
2264
+ },
2265
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyDto": {
2266
+ "type": "object",
2267
+ "properties": {
2268
+ "type": {
2269
+ "type": "string",
2270
+ "nullable": true
2271
+ },
2272
+ "typeSimple": {
2273
+ "type": "string",
2274
+ "nullable": true
2275
+ },
2276
+ "displayName": {
2277
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.LocalizableStringDto"
2278
+ },
2279
+ "api": {
2280
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiDto"
2281
+ },
2282
+ "ui": {
2283
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiDto"
2284
+ },
2285
+ "attributes": {
2286
+ "type": "array",
2287
+ "items": {
2288
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyAttributeDto"
2289
+ },
2290
+ "nullable": true
2291
+ },
2292
+ "configuration": {
2293
+ "type": "object",
2294
+ "additionalProperties": { },
2295
+ "nullable": true
2296
+ },
2297
+ "defaultValue": {
2298
+ "nullable": true
2299
+ }
2300
+ },
2301
+ "additionalProperties": false
2302
+ },
2303
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiDto": {
2304
+ "type": "object",
2305
+ "properties": {
2306
+ "onTable": {
2307
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiTableDto"
2308
+ },
2309
+ "onCreateForm": {
2310
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto"
2311
+ },
2312
+ "onEditForm": {
2313
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto"
2314
+ },
2315
+ "lookup": {
2316
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiLookupDto"
2317
+ }
2318
+ },
2319
+ "additionalProperties": false
2320
+ },
2321
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto": {
2322
+ "type": "object",
2323
+ "properties": {
2324
+ "isVisible": {
2325
+ "type": "boolean"
2326
+ }
2327
+ },
2328
+ "additionalProperties": false
2329
+ },
2330
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiLookupDto": {
2331
+ "type": "object",
2332
+ "properties": {
2333
+ "url": {
2334
+ "type": "string",
2335
+ "nullable": true
2336
+ },
2337
+ "resultListPropertyName": {
2338
+ "type": "string",
2339
+ "nullable": true
2340
+ },
2341
+ "displayPropertyName": {
2342
+ "type": "string",
2343
+ "nullable": true
2344
+ },
2345
+ "valuePropertyName": {
2346
+ "type": "string",
2347
+ "nullable": true
2348
+ },
2349
+ "filterParamName": {
2350
+ "type": "string",
2351
+ "nullable": true
2352
+ }
2353
+ },
2354
+ "additionalProperties": false
2355
+ },
2356
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiTableDto": {
2357
+ "type": "object",
2358
+ "properties": {
2359
+ "isVisible": {
2360
+ "type": "boolean"
2361
+ }
2362
+ },
2363
+ "additionalProperties": false
2364
+ },
2365
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.LocalizableStringDto": {
2366
+ "type": "object",
2367
+ "properties": {
2368
+ "name": {
2369
+ "type": "string",
2370
+ "nullable": true
2371
+ },
2372
+ "resource": {
2373
+ "type": "string",
2374
+ "nullable": true
2375
+ }
2376
+ },
2377
+ "additionalProperties": false
2378
+ },
2379
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ModuleExtensionDto": {
2380
+ "type": "object",
2381
+ "properties": {
2382
+ "entities": {
2383
+ "type": "object",
2384
+ "additionalProperties": {
2385
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.EntityExtensionDto"
2386
+ },
2387
+ "nullable": true
2388
+ },
2389
+ "configuration": {
2390
+ "type": "object",
2391
+ "additionalProperties": { },
2392
+ "nullable": true
2393
+ }
2394
+ },
2395
+ "additionalProperties": false
2396
+ },
2397
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ObjectExtensionsDto": {
2398
+ "type": "object",
2399
+ "properties": {
2400
+ "modules": {
2401
+ "type": "object",
2402
+ "additionalProperties": {
2403
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ModuleExtensionDto"
2404
+ },
2405
+ "nullable": true
2406
+ },
2407
+ "enums": {
2408
+ "type": "object",
2409
+ "additionalProperties": {
2410
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumDto"
2411
+ },
2412
+ "nullable": true
2413
+ }
2414
+ },
2415
+ "additionalProperties": false
2416
+ },
2417
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimeZone": {
2418
+ "type": "object",
2419
+ "properties": {
2420
+ "iana": {
2421
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.IanaTimeZone"
2422
+ },
2423
+ "windows": {
2424
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.WindowsTimeZone"
2425
+ }
2426
+ },
2427
+ "additionalProperties": false
2428
+ },
2429
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimingDto": {
2430
+ "type": "object",
2431
+ "properties": {
2432
+ "timeZone": {
2433
+ "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimeZone"
2434
+ }
2435
+ },
2436
+ "additionalProperties": false
2437
+ },
2438
+ "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.WindowsTimeZone": {
2439
+ "type": "object",
2440
+ "properties": {
2441
+ "timeZoneId": {
2442
+ "type": "string",
2443
+ "nullable": true
2444
+ }
2445
+ },
2446
+ "additionalProperties": false
2447
+ },
2448
+ "Volo.Abp.AspNetCore.Mvc.MultiTenancy.CurrentTenantDto": {
2449
+ "type": "object",
2450
+ "properties": {
2451
+ "id": {
2452
+ "type": "string",
2453
+ "format": "uuid",
2454
+ "nullable": true
2455
+ },
2456
+ "name": {
2457
+ "type": "string",
2458
+ "nullable": true
2459
+ },
2460
+ "isAvailable": {
2461
+ "type": "boolean"
2462
+ }
2463
+ },
2464
+ "additionalProperties": false
2465
+ },
2466
+ "Volo.Abp.AspNetCore.Mvc.MultiTenancy.MultiTenancyInfoDto": {
2467
+ "type": "object",
2468
+ "properties": {
2469
+ "isEnabled": {
2470
+ "type": "boolean"
2471
+ }
2472
+ },
2473
+ "additionalProperties": false
2474
+ },
2475
+ "Volo.Abp.Http.Modeling.ActionApiDescriptionModel": {
2476
+ "type": "object",
2477
+ "properties": {
2478
+ "uniqueName": {
2479
+ "type": "string",
2480
+ "nullable": true
2481
+ },
2482
+ "name": {
2483
+ "type": "string",
2484
+ "nullable": true
2485
+ },
2486
+ "httpMethod": {
2487
+ "type": "string",
2488
+ "nullable": true
2489
+ },
2490
+ "url": {
2491
+ "type": "string",
2492
+ "nullable": true
2493
+ },
2494
+ "supportedVersions": {
2495
+ "type": "array",
2496
+ "items": {
2497
+ "type": "string"
2498
+ },
2499
+ "nullable": true
2500
+ },
2501
+ "parametersOnMethod": {
2502
+ "type": "array",
2503
+ "items": {
2504
+ "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel"
2505
+ },
2506
+ "nullable": true
2507
+ },
2508
+ "parameters": {
2509
+ "type": "array",
2510
+ "items": {
2511
+ "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ParameterApiDescriptionModel"
2512
+ },
2513
+ "nullable": true
2514
+ },
2515
+ "returnValue": {
2516
+ "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel"
2517
+ },
2518
+ "allowAnonymous": {
2519
+ "type": "boolean",
2520
+ "nullable": true
2521
+ },
2522
+ "implementFrom": {
2523
+ "type": "string",
2524
+ "nullable": true
2525
+ }
2526
+ },
2527
+ "additionalProperties": false
2528
+ },
2529
+ "Volo.Abp.Http.Modeling.ApplicationApiDescriptionModel": {
2530
+ "type": "object",
2531
+ "properties": {
2532
+ "modules": {
2533
+ "type": "object",
2534
+ "additionalProperties": {
2535
+ "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ModuleApiDescriptionModel"
2536
+ },
2537
+ "nullable": true
2538
+ },
2539
+ "types": {
2540
+ "type": "object",
2541
+ "additionalProperties": {
2542
+ "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.TypeApiDescriptionModel"
2543
+ },
2544
+ "nullable": true
2545
+ }
2546
+ },
2547
+ "additionalProperties": false
2548
+ },
2549
+ "Volo.Abp.Http.Modeling.ControllerApiDescriptionModel": {
2550
+ "type": "object",
2551
+ "properties": {
2552
+ "controllerName": {
2553
+ "type": "string",
2554
+ "nullable": true
2555
+ },
2556
+ "controllerGroupName": {
2557
+ "type": "string",
2558
+ "nullable": true
2559
+ },
2560
+ "isRemoteService": {
2561
+ "type": "boolean"
2562
+ },
2563
+ "isIntegrationService": {
2564
+ "type": "boolean"
2565
+ },
2566
+ "apiVersion": {
2567
+ "type": "string",
2568
+ "nullable": true
2569
+ },
2570
+ "type": {
2571
+ "type": "string",
2572
+ "nullable": true
2573
+ },
2574
+ "interfaces": {
2575
+ "type": "array",
2576
+ "items": {
2577
+ "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ControllerInterfaceApiDescriptionModel"
2578
+ },
2579
+ "nullable": true
2580
+ },
2581
+ "actions": {
2582
+ "type": "object",
2583
+ "additionalProperties": {
2584
+ "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ActionApiDescriptionModel"
2585
+ },
2586
+ "nullable": true
2587
+ }
2588
+ },
2589
+ "additionalProperties": false
2590
+ },
2591
+ "Volo.Abp.Http.Modeling.ControllerInterfaceApiDescriptionModel": {
2592
+ "type": "object",
2593
+ "properties": {
2594
+ "type": {
2595
+ "type": "string",
2596
+ "nullable": true
2597
+ },
2598
+ "name": {
2599
+ "type": "string",
2600
+ "nullable": true
2601
+ },
2602
+ "methods": {
2603
+ "type": "array",
2604
+ "items": {
2605
+ "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.InterfaceMethodApiDescriptionModel"
2606
+ },
2607
+ "nullable": true
2608
+ }
2609
+ },
2610
+ "additionalProperties": false
2611
+ },
2612
+ "Volo.Abp.Http.Modeling.InterfaceMethodApiDescriptionModel": {
2613
+ "type": "object",
2614
+ "properties": {
2615
+ "name": {
2616
+ "type": "string",
2617
+ "nullable": true
2618
+ },
2619
+ "parametersOnMethod": {
2620
+ "type": "array",
2621
+ "items": {
2622
+ "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel"
2623
+ },
2624
+ "nullable": true
2625
+ },
2626
+ "returnValue": {
2627
+ "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel"
2628
+ }
2629
+ },
2630
+ "additionalProperties": false
2631
+ },
2632
+ "Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel": {
2633
+ "type": "object",
2634
+ "properties": {
2635
+ "name": {
2636
+ "type": "string",
2637
+ "nullable": true
2638
+ },
2639
+ "typeAsString": {
2640
+ "type": "string",
2641
+ "nullable": true
2642
+ },
2643
+ "type": {
2644
+ "type": "string",
2645
+ "nullable": true
2646
+ },
2647
+ "typeSimple": {
2648
+ "type": "string",
2649
+ "nullable": true
2650
+ },
2651
+ "isOptional": {
2652
+ "type": "boolean"
2653
+ },
2654
+ "defaultValue": {
2655
+ "nullable": true
2656
+ }
2657
+ },
2658
+ "additionalProperties": false
2659
+ },
2660
+ "Volo.Abp.Http.Modeling.ModuleApiDescriptionModel": {
2661
+ "type": "object",
2662
+ "properties": {
2663
+ "rootPath": {
2664
+ "type": "string",
2665
+ "nullable": true
2666
+ },
2667
+ "remoteServiceName": {
2668
+ "type": "string",
2669
+ "nullable": true
2670
+ },
2671
+ "controllers": {
2672
+ "type": "object",
2673
+ "additionalProperties": {
2674
+ "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ControllerApiDescriptionModel"
2675
+ },
2676
+ "nullable": true
2677
+ }
2678
+ },
2679
+ "additionalProperties": false
2680
+ },
2681
+ "Volo.Abp.Http.Modeling.ParameterApiDescriptionModel": {
2682
+ "type": "object",
2683
+ "properties": {
2684
+ "nameOnMethod": {
2685
+ "type": "string",
2686
+ "nullable": true
2687
+ },
2688
+ "name": {
2689
+ "type": "string",
2690
+ "nullable": true
2691
+ },
2692
+ "jsonName": {
2693
+ "type": "string",
2694
+ "nullable": true
2695
+ },
2696
+ "type": {
2697
+ "type": "string",
2698
+ "nullable": true
2699
+ },
2700
+ "typeSimple": {
2701
+ "type": "string",
2702
+ "nullable": true
2703
+ },
2704
+ "isOptional": {
2705
+ "type": "boolean"
2706
+ },
2707
+ "defaultValue": {
2708
+ "nullable": true
2709
+ },
2710
+ "constraintTypes": {
2711
+ "type": "array",
2712
+ "items": {
2713
+ "type": "string"
2714
+ },
2715
+ "nullable": true
2716
+ },
2717
+ "bindingSourceId": {
2718
+ "type": "string",
2719
+ "nullable": true
2720
+ },
2721
+ "descriptorName": {
2722
+ "type": "string",
2723
+ "nullable": true
2724
+ }
2725
+ },
2726
+ "additionalProperties": false
2727
+ },
2728
+ "Volo.Abp.Http.Modeling.PropertyApiDescriptionModel": {
2729
+ "type": "object",
2730
+ "properties": {
2731
+ "name": {
2732
+ "type": "string",
2733
+ "nullable": true
2734
+ },
2735
+ "jsonName": {
2736
+ "type": "string",
2737
+ "nullable": true
2738
+ },
2739
+ "type": {
2740
+ "type": "string",
2741
+ "nullable": true
2742
+ },
2743
+ "typeSimple": {
2744
+ "type": "string",
2745
+ "nullable": true
2746
+ },
2747
+ "isRequired": {
2748
+ "type": "boolean"
2749
+ },
2750
+ "minLength": {
2751
+ "type": "integer",
2752
+ "format": "int32",
2753
+ "nullable": true
2754
+ },
2755
+ "maxLength": {
2756
+ "type": "integer",
2757
+ "format": "int32",
2758
+ "nullable": true
2759
+ },
2760
+ "minimum": {
2761
+ "type": "string",
2762
+ "nullable": true
2763
+ },
2764
+ "maximum": {
2765
+ "type": "string",
2766
+ "nullable": true
2767
+ },
2768
+ "regex": {
2769
+ "type": "string",
2770
+ "nullable": true
2771
+ }
2772
+ },
2773
+ "additionalProperties": false
2774
+ },
2775
+ "Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel": {
2776
+ "type": "object",
2777
+ "properties": {
2778
+ "type": {
2779
+ "type": "string",
2780
+ "nullable": true
2781
+ },
2782
+ "typeSimple": {
2783
+ "type": "string",
2784
+ "nullable": true
2785
+ }
2786
+ },
2787
+ "additionalProperties": false
2788
+ },
2789
+ "Volo.Abp.Http.Modeling.TypeApiDescriptionModel": {
2790
+ "type": "object",
2791
+ "properties": {
2792
+ "baseType": {
2793
+ "type": "string",
2794
+ "nullable": true
2795
+ },
2796
+ "isEnum": {
2797
+ "type": "boolean"
2798
+ },
2799
+ "enumNames": {
2800
+ "type": "array",
2801
+ "items": {
2802
+ "type": "string"
2803
+ },
2804
+ "nullable": true
2805
+ },
2806
+ "enumValues": {
2807
+ "type": "array",
2808
+ "items": { },
2809
+ "nullable": true
2810
+ },
2811
+ "genericArguments": {
2812
+ "type": "array",
2813
+ "items": {
2814
+ "type": "string"
2815
+ },
2816
+ "nullable": true
2817
+ },
2818
+ "properties": {
2819
+ "type": "array",
2820
+ "items": {
2821
+ "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.PropertyApiDescriptionModel"
2822
+ },
2823
+ "nullable": true
2824
+ }
2825
+ },
2826
+ "additionalProperties": false
2827
+ },
2828
+ "Volo.Abp.Http.RemoteServiceErrorInfo": {
2829
+ "type": "object",
2830
+ "properties": {
2831
+ "code": {
2832
+ "type": "string",
2833
+ "nullable": true
2834
+ },
2835
+ "message": {
2836
+ "type": "string",
2837
+ "nullable": true
2838
+ },
2839
+ "details": {
2840
+ "type": "string",
2841
+ "nullable": true
2842
+ },
2843
+ "data": {
2844
+ "type": "object",
2845
+ "additionalProperties": { },
2846
+ "nullable": true
2847
+ },
2848
+ "validationErrors": {
2849
+ "type": "array",
2850
+ "items": {
2851
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceValidationErrorInfo"
2852
+ },
2853
+ "nullable": true
2854
+ }
2855
+ },
2856
+ "additionalProperties": false
2857
+ },
2858
+ "Volo.Abp.Http.RemoteServiceErrorResponse": {
2859
+ "type": "object",
2860
+ "properties": {
2861
+ "error": {
2862
+ "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorInfo"
2863
+ }
2864
+ },
2865
+ "additionalProperties": false
2866
+ },
2867
+ "Volo.Abp.Http.RemoteServiceValidationErrorInfo": {
2868
+ "type": "object",
2869
+ "properties": {
2870
+ "message": {
2871
+ "type": "string",
2872
+ "nullable": true
2873
+ },
2874
+ "members": {
2875
+ "type": "array",
2876
+ "items": {
2877
+ "type": "string"
2878
+ },
2879
+ "nullable": true
2880
+ }
2881
+ },
2882
+ "additionalProperties": false
2883
+ },
2884
+ "Volo.Abp.Localization.LanguageInfo": {
2885
+ "type": "object",
2886
+ "properties": {
2887
+ "cultureName": {
2888
+ "type": "string",
2889
+ "nullable": true
2890
+ },
2891
+ "uiCultureName": {
2892
+ "type": "string",
2893
+ "nullable": true
2894
+ },
2895
+ "displayName": {
2896
+ "type": "string",
2897
+ "nullable": true
2898
+ },
2899
+ "twoLetterISOLanguageName": {
2900
+ "type": "string",
2901
+ "nullable": true,
2902
+ "readOnly": true
2903
+ },
2904
+ "flagIcon": {
2905
+ "type": "string",
2906
+ "nullable": true
2907
+ }
2908
+ },
2909
+ "additionalProperties": false
2910
+ },
2911
+ "Volo.Abp.NameValue": {
2912
+ "type": "object",
2913
+ "properties": {
2914
+ "name": {
2915
+ "type": "string",
2916
+ "nullable": true
2917
+ },
2918
+ "value": {
2919
+ "type": "string",
2920
+ "nullable": true
2921
+ }
2922
+ },
2923
+ "additionalProperties": false
2924
+ }
2925
+ },
2926
+ "securitySchemes": {
2927
+ "oidc": {
2928
+ "type": "openIdConnect",
2929
+ "openIdConnectUrl": "https://localhost:44322/.well-known/openid-configuration"
2930
+ }
2931
+ }
2932
+ },
2933
+ "security": [
2934
+ {
2935
+ "oidc": [ ]
2936
+ }
2937
+ ]
2938
+ }