@objectstack/spec 0.8.1 → 0.9.0

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 (197) hide show
  1. package/dist/ai/devops-agent.zod.d.ts +1 -1
  2. package/dist/ai/feedback-loop.zod.d.ts +4293 -0
  3. package/dist/ai/feedback-loop.zod.d.ts.map +1 -0
  4. package/dist/ai/feedback-loop.zod.js +53 -0
  5. package/dist/ai/index.d.ts +1 -0
  6. package/dist/ai/index.d.ts.map +1 -1
  7. package/dist/ai/index.js +1 -0
  8. package/dist/api/documentation.zod.d.ts +1073 -0
  9. package/dist/api/documentation.zod.d.ts.map +1 -0
  10. package/dist/api/documentation.zod.js +487 -0
  11. package/dist/api/errors.zod.d.ts +6 -6
  12. package/dist/api/graphql.zod.d.ts +3 -3
  13. package/dist/api/hub.zod.d.ts +5239 -0
  14. package/dist/api/hub.zod.d.ts.map +1 -0
  15. package/dist/api/hub.zod.js +784 -0
  16. package/dist/api/index.d.ts +4 -2
  17. package/dist/api/index.d.ts.map +1 -1
  18. package/dist/api/index.js +4 -2
  19. package/dist/api/odata.zod.d.ts +1 -1
  20. package/dist/api/protocol.zod.d.ts +2 -1143
  21. package/dist/api/protocol.zod.d.ts.map +1 -1
  22. package/dist/api/protocol.zod.js +2 -49
  23. package/dist/api/registry.example.d.ts +411 -0
  24. package/dist/api/registry.example.d.ts.map +1 -0
  25. package/dist/api/registry.example.js +470 -0
  26. package/dist/api/registry.zod.d.ts +2095 -0
  27. package/dist/api/registry.zod.d.ts.map +1 -0
  28. package/dist/api/registry.zod.js +755 -0
  29. package/dist/api/websocket.zod.d.ts +8 -8
  30. package/dist/auth/scim.zod.d.ts +3 -3
  31. package/dist/automation/flow.zod.d.ts +3 -3
  32. package/dist/contracts/index.d.ts +1 -0
  33. package/dist/contracts/index.d.ts.map +1 -1
  34. package/dist/contracts/index.js +1 -0
  35. package/dist/contracts/schema-driver.d.ts +21 -0
  36. package/dist/contracts/schema-driver.d.ts.map +1 -0
  37. package/dist/contracts/schema-driver.js +2 -0
  38. package/dist/hub/composer.zod.d.ts +226 -0
  39. package/dist/hub/composer.zod.d.ts.map +1 -1
  40. package/dist/hub/hub-federation.zod.d.ts +764 -0
  41. package/dist/hub/hub-federation.zod.d.ts.map +1 -0
  42. package/dist/hub/hub-federation.zod.js +441 -0
  43. package/dist/hub/index.d.ts +2 -0
  44. package/dist/hub/index.d.ts.map +1 -1
  45. package/dist/hub/index.js +3 -0
  46. package/dist/hub/plugin-security.zod.d.ts +1029 -0
  47. package/dist/hub/plugin-security.zod.d.ts.map +1 -0
  48. package/dist/hub/plugin-security.zod.js +637 -0
  49. package/dist/index.d.ts +1 -0
  50. package/dist/index.d.ts.map +1 -1
  51. package/dist/index.js +2 -1
  52. package/dist/integration/connector/vercel.zod.d.ts +2 -2
  53. package/dist/qa/index.d.ts +11 -0
  54. package/dist/qa/index.d.ts.map +1 -0
  55. package/dist/qa/index.js +26 -0
  56. package/dist/qa/testing.zod.d.ts +345 -0
  57. package/dist/qa/testing.zod.d.ts.map +1 -0
  58. package/dist/qa/testing.zod.js +69 -0
  59. package/dist/stack.zod.d.ts +576 -3
  60. package/dist/stack.zod.d.ts.map +1 -1
  61. package/dist/system/index.d.ts +2 -0
  62. package/dist/system/index.d.ts.map +1 -1
  63. package/dist/system/index.js +2 -0
  64. package/dist/system/manifest.zod.d.ts +226 -0
  65. package/dist/system/manifest.zod.d.ts.map +1 -1
  66. package/dist/system/manifest.zod.js +8 -0
  67. package/dist/system/message-queue.zod.d.ts +2 -2
  68. package/dist/system/metadata-loader.zod.d.ts +1 -1
  69. package/dist/system/migration.zod.d.ts +4205 -0
  70. package/dist/system/migration.zod.d.ts.map +1 -0
  71. package/dist/system/migration.zod.js +70 -0
  72. package/dist/system/plugin-loading.zod.d.ts +575 -0
  73. package/dist/system/plugin-loading.zod.d.ts.map +1 -0
  74. package/dist/system/plugin-loading.zod.js +612 -0
  75. package/json-schema/{api/ViewResponse.json → ai/FeedbackLoop.json} +2 -2
  76. package/json-schema/{api/ViewType.json → ai/Issue.json} +2 -2
  77. package/json-schema/{api/GetViewRequest.json → ai/MetadataSource.json} +2 -2
  78. package/json-schema/{api/ViewColumn.json → ai/Resolution.json} +2 -2
  79. package/json-schema/api/{DeleteViewRequest.json → ApiChangelogEntry.json} +2 -2
  80. package/json-schema/api/{CreateViewRequest.json → ApiDiscoveryQuery.json} +2 -2
  81. package/json-schema/api/ApiDiscoveryResponse.json +7 -0
  82. package/json-schema/api/ApiDocumentationConfig.json +7 -0
  83. package/json-schema/api/ApiEndpointRegistration.json +7 -0
  84. package/json-schema/api/ApiMetadata.json +7 -0
  85. package/json-schema/api/ApiParameter.json +7 -0
  86. package/json-schema/api/{GetViewResponse.json → ApiProtocolType.json} +2 -2
  87. package/json-schema/api/ApiRegistry.json +7 -0
  88. package/json-schema/api/{ListViewsRequest.json → ApiRegistryEntry.json} +2 -2
  89. package/json-schema/api/ApiResponse.json +7 -0
  90. package/json-schema/api/ApiTestCollection.json +7 -0
  91. package/json-schema/api/ApiTestRequest.json +7 -0
  92. package/json-schema/api/{DeleteViewResponse.json → ApiTestingUiConfig.json} +2 -2
  93. package/json-schema/api/ApiTestingUiType.json +7 -0
  94. package/json-schema/api/BuildStatusResponse.json +7 -0
  95. package/json-schema/api/CodeGenerationTemplate.json +7 -0
  96. package/json-schema/api/CompileManifestRequest.json +7 -0
  97. package/json-schema/api/CompileManifestResponse.json +7 -0
  98. package/json-schema/api/ConflictResolutionStrategy.json +7 -0
  99. package/json-schema/api/CreateSpaceRequest.json +7 -0
  100. package/json-schema/api/CreateTenantRequest.json +7 -0
  101. package/json-schema/api/GeneratedApiDocumentation.json +7 -0
  102. package/json-schema/api/GetBuildStatusRequest.json +7 -0
  103. package/json-schema/api/GetMarketplacePluginRequest.json +7 -0
  104. package/json-schema/api/GetPluginVersionsRequest.json +7 -0
  105. package/json-schema/api/GetPluginVersionsResponse.json +7 -0
  106. package/json-schema/api/HttpStatusCode.json +7 -0
  107. package/json-schema/api/HubHealthResponse.json +7 -0
  108. package/json-schema/api/HubMetricsResponse.json +7 -0
  109. package/json-schema/api/IssueLicenseRequest.json +7 -0
  110. package/json-schema/api/LicenseResponse.json +7 -0
  111. package/json-schema/api/ListLicensesRequest.json +7 -0
  112. package/json-schema/api/ListLicensesResponse.json +7 -0
  113. package/json-schema/api/ListMarketplaceRequest.json +7 -0
  114. package/json-schema/api/ListMarketplaceResponse.json +7 -0
  115. package/json-schema/api/ListSpacesRequest.json +7 -0
  116. package/json-schema/api/ListSpacesResponse.json +7 -0
  117. package/json-schema/api/ListTenantsRequest.json +7 -0
  118. package/json-schema/api/ListTenantsResponse.json +7 -0
  119. package/json-schema/api/MarketplacePluginResponse.json +7 -0
  120. package/json-schema/api/ObjectQLReference.json +7 -0
  121. package/json-schema/api/OpenApiSecurityScheme.json +7 -0
  122. package/json-schema/api/OpenApiServer.json +7 -0
  123. package/json-schema/api/OpenApiSpec.json +7 -0
  124. package/json-schema/api/PaginationRequest.json +7 -0
  125. package/json-schema/api/PaginationResponse.json +7 -0
  126. package/json-schema/api/PluginResponse.json +7 -0
  127. package/json-schema/api/PluginVersionInfo.json +7 -0
  128. package/json-schema/api/PublishPluginRequest.json +7 -0
  129. package/json-schema/api/RevokeLicenseRequest.json +7 -0
  130. package/json-schema/api/SchemaDefinition.json +7 -0
  131. package/json-schema/api/SearchPluginsRequest.json +7 -0
  132. package/json-schema/api/SearchPluginsResponse.json +7 -0
  133. package/json-schema/api/SpaceResponse.json +7 -0
  134. package/json-schema/api/TenantResponse.json +7 -0
  135. package/json-schema/api/UpdatePluginRequest.json +7 -0
  136. package/json-schema/api/UpdateSpaceRequest.json +7 -0
  137. package/json-schema/api/UpdateTenantRequest.json +7 -0
  138. package/json-schema/api/ValidateLicenseRequest.json +7 -0
  139. package/json-schema/api/ValidateLicenseResponse.json +7 -0
  140. package/json-schema/hub/DependencyConflict.json +7 -0
  141. package/json-schema/hub/DependencyGraph.json +7 -0
  142. package/json-schema/hub/DependencyGraphNode.json +7 -0
  143. package/json-schema/hub/DependencyResolutionResult.json +7 -0
  144. package/json-schema/hub/EdgeLocation.json +7 -0
  145. package/json-schema/hub/FederationTopology.json +7 -0
  146. package/json-schema/hub/GlobalRegistryEntry.json +7 -0
  147. package/json-schema/hub/HubInstance.json +7 -0
  148. package/json-schema/hub/PackageDependency.json +7 -0
  149. package/json-schema/hub/PluginProvenance.json +7 -0
  150. package/json-schema/hub/PluginTrustScore.json +7 -0
  151. package/json-schema/{api/SavedView.json → hub/Region.json} +2 -2
  152. package/json-schema/hub/ReplicationJob.json +7 -0
  153. package/json-schema/{api/ViewLayout.json → hub/SBOM.json} +2 -2
  154. package/json-schema/hub/SBOMEntry.json +7 -0
  155. package/json-schema/hub/SecurityPolicy.json +7 -0
  156. package/json-schema/hub/SecurityScanResult.json +7 -0
  157. package/json-schema/hub/SecurityVulnerability.json +7 -0
  158. package/json-schema/hub/TenantPlacementPolicy.json +7 -0
  159. package/json-schema/hub/VulnerabilitySeverity.json +7 -0
  160. package/json-schema/qa/TestAction.json +7 -0
  161. package/json-schema/qa/TestActionType.json +7 -0
  162. package/json-schema/qa/TestAssertion.json +7 -0
  163. package/json-schema/qa/TestAssertionType.json +7 -0
  164. package/json-schema/qa/TestContext.json +7 -0
  165. package/json-schema/qa/TestScenario.json +7 -0
  166. package/json-schema/qa/TestStep.json +7 -0
  167. package/json-schema/qa/TestSuite.json +7 -0
  168. package/json-schema/system/AddFieldOperation.json +7 -0
  169. package/json-schema/system/ChangeSet.json +7 -0
  170. package/json-schema/system/CreateObjectOperation.json +7 -0
  171. package/json-schema/system/DeleteObjectOperation.json +7 -0
  172. package/json-schema/system/ExecuteSqlOperation.json +7 -0
  173. package/json-schema/system/MigrationDependency.json +7 -0
  174. package/json-schema/system/MigrationOperation.json +7 -0
  175. package/json-schema/system/ModifyFieldOperation.json +7 -0
  176. package/json-schema/system/PluginCaching.json +7 -0
  177. package/json-schema/system/PluginCodeSplitting.json +7 -0
  178. package/json-schema/system/PluginDependencyResolution.json +7 -0
  179. package/json-schema/system/PluginDynamicImport.json +7 -0
  180. package/json-schema/system/PluginHotReload.json +7 -0
  181. package/json-schema/system/PluginInitialization.json +7 -0
  182. package/json-schema/system/PluginLoadingConfig.json +7 -0
  183. package/json-schema/system/PluginLoadingEvent.json +7 -0
  184. package/json-schema/system/PluginLoadingState.json +7 -0
  185. package/json-schema/system/PluginLoadingStrategy.json +7 -0
  186. package/json-schema/system/PluginPerformanceMonitoring.json +7 -0
  187. package/json-schema/system/PluginPreloadConfig.json +7 -0
  188. package/json-schema/system/PluginSandboxing.json +7 -0
  189. package/json-schema/system/RemoveFieldOperation.json +7 -0
  190. package/json-schema/system/RenameObjectOperation.json +7 -0
  191. package/package.json +1 -1
  192. package/dist/api/view-storage.zod.d.ts +0 -2054
  193. package/dist/api/view-storage.zod.d.ts.map +0 -1
  194. package/dist/api/view-storage.zod.js +0 -243
  195. package/json-schema/api/ListViewsResponse.json +0 -7
  196. package/json-schema/api/UpdateViewRequest.json +0 -7
  197. package/json-schema/api/ViewVisibility.json +0 -7
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ApiEndpointRegistration",
3
+ "definitions": {
4
+ "ApiEndpointRegistration": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ApiMetadata",
3
+ "definitions": {
4
+ "ApiMetadata": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ApiParameter",
3
+ "definitions": {
4
+ "ApiParameter": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -1,7 +1,7 @@
1
1
  {
2
- "$ref": "#/definitions/GetViewResponse",
2
+ "$ref": "#/definitions/ApiProtocolType",
3
3
  "definitions": {
4
- "GetViewResponse": {}
4
+ "ApiProtocolType": {}
5
5
  },
6
6
  "$schema": "http://json-schema.org/draft-07/schema#"
7
7
  }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ApiRegistry",
3
+ "definitions": {
4
+ "ApiRegistry": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -1,7 +1,7 @@
1
1
  {
2
- "$ref": "#/definitions/ListViewsRequest",
2
+ "$ref": "#/definitions/ApiRegistryEntry",
3
3
  "definitions": {
4
- "ListViewsRequest": {}
4
+ "ApiRegistryEntry": {}
5
5
  },
6
6
  "$schema": "http://json-schema.org/draft-07/schema#"
7
7
  }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ApiResponse",
3
+ "definitions": {
4
+ "ApiResponse": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ApiTestCollection",
3
+ "definitions": {
4
+ "ApiTestCollection": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ApiTestRequest",
3
+ "definitions": {
4
+ "ApiTestRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -1,7 +1,7 @@
1
1
  {
2
- "$ref": "#/definitions/DeleteViewResponse",
2
+ "$ref": "#/definitions/ApiTestingUiConfig",
3
3
  "definitions": {
4
- "DeleteViewResponse": {}
4
+ "ApiTestingUiConfig": {}
5
5
  },
6
6
  "$schema": "http://json-schema.org/draft-07/schema#"
7
7
  }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ApiTestingUiType",
3
+ "definitions": {
4
+ "ApiTestingUiType": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/BuildStatusResponse",
3
+ "definitions": {
4
+ "BuildStatusResponse": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/CodeGenerationTemplate",
3
+ "definitions": {
4
+ "CodeGenerationTemplate": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/CompileManifestRequest",
3
+ "definitions": {
4
+ "CompileManifestRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/CompileManifestResponse",
3
+ "definitions": {
4
+ "CompileManifestResponse": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ConflictResolutionStrategy",
3
+ "definitions": {
4
+ "ConflictResolutionStrategy": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/CreateSpaceRequest",
3
+ "definitions": {
4
+ "CreateSpaceRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/CreateTenantRequest",
3
+ "definitions": {
4
+ "CreateTenantRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/GeneratedApiDocumentation",
3
+ "definitions": {
4
+ "GeneratedApiDocumentation": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/GetBuildStatusRequest",
3
+ "definitions": {
4
+ "GetBuildStatusRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/GetMarketplacePluginRequest",
3
+ "definitions": {
4
+ "GetMarketplacePluginRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/GetPluginVersionsRequest",
3
+ "definitions": {
4
+ "GetPluginVersionsRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/GetPluginVersionsResponse",
3
+ "definitions": {
4
+ "GetPluginVersionsResponse": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/HttpStatusCode",
3
+ "definitions": {
4
+ "HttpStatusCode": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/HubHealthResponse",
3
+ "definitions": {
4
+ "HubHealthResponse": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/HubMetricsResponse",
3
+ "definitions": {
4
+ "HubMetricsResponse": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/IssueLicenseRequest",
3
+ "definitions": {
4
+ "IssueLicenseRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/LicenseResponse",
3
+ "definitions": {
4
+ "LicenseResponse": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ListLicensesRequest",
3
+ "definitions": {
4
+ "ListLicensesRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ListLicensesResponse",
3
+ "definitions": {
4
+ "ListLicensesResponse": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ListMarketplaceRequest",
3
+ "definitions": {
4
+ "ListMarketplaceRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ListMarketplaceResponse",
3
+ "definitions": {
4
+ "ListMarketplaceResponse": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ListSpacesRequest",
3
+ "definitions": {
4
+ "ListSpacesRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ListSpacesResponse",
3
+ "definitions": {
4
+ "ListSpacesResponse": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ListTenantsRequest",
3
+ "definitions": {
4
+ "ListTenantsRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ListTenantsResponse",
3
+ "definitions": {
4
+ "ListTenantsResponse": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/MarketplacePluginResponse",
3
+ "definitions": {
4
+ "MarketplacePluginResponse": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ObjectQLReference",
3
+ "definitions": {
4
+ "ObjectQLReference": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/OpenApiSecurityScheme",
3
+ "definitions": {
4
+ "OpenApiSecurityScheme": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/OpenApiServer",
3
+ "definitions": {
4
+ "OpenApiServer": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/OpenApiSpec",
3
+ "definitions": {
4
+ "OpenApiSpec": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/PaginationRequest",
3
+ "definitions": {
4
+ "PaginationRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/PaginationResponse",
3
+ "definitions": {
4
+ "PaginationResponse": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/PluginResponse",
3
+ "definitions": {
4
+ "PluginResponse": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/PluginVersionInfo",
3
+ "definitions": {
4
+ "PluginVersionInfo": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/PublishPluginRequest",
3
+ "definitions": {
4
+ "PublishPluginRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/RevokeLicenseRequest",
3
+ "definitions": {
4
+ "RevokeLicenseRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/SchemaDefinition",
3
+ "definitions": {
4
+ "SchemaDefinition": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/SearchPluginsRequest",
3
+ "definitions": {
4
+ "SearchPluginsRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/SearchPluginsResponse",
3
+ "definitions": {
4
+ "SearchPluginsResponse": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/SpaceResponse",
3
+ "definitions": {
4
+ "SpaceResponse": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/TenantResponse",
3
+ "definitions": {
4
+ "TenantResponse": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/UpdatePluginRequest",
3
+ "definitions": {
4
+ "UpdatePluginRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/UpdateSpaceRequest",
3
+ "definitions": {
4
+ "UpdateSpaceRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/UpdateTenantRequest",
3
+ "definitions": {
4
+ "UpdateTenantRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ValidateLicenseRequest",
3
+ "definitions": {
4
+ "ValidateLicenseRequest": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ValidateLicenseResponse",
3
+ "definitions": {
4
+ "ValidateLicenseResponse": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/DependencyConflict",
3
+ "definitions": {
4
+ "DependencyConflict": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/DependencyGraph",
3
+ "definitions": {
4
+ "DependencyGraph": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/DependencyGraphNode",
3
+ "definitions": {
4
+ "DependencyGraphNode": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/DependencyResolutionResult",
3
+ "definitions": {
4
+ "DependencyResolutionResult": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/EdgeLocation",
3
+ "definitions": {
4
+ "EdgeLocation": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/FederationTopology",
3
+ "definitions": {
4
+ "FederationTopology": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/GlobalRegistryEntry",
3
+ "definitions": {
4
+ "GlobalRegistryEntry": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/HubInstance",
3
+ "definitions": {
4
+ "HubInstance": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/PackageDependency",
3
+ "definitions": {
4
+ "PackageDependency": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/PluginProvenance",
3
+ "definitions": {
4
+ "PluginProvenance": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/PluginTrustScore",
3
+ "definitions": {
4
+ "PluginTrustScore": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }
@@ -1,7 +1,7 @@
1
1
  {
2
- "$ref": "#/definitions/SavedView",
2
+ "$ref": "#/definitions/Region",
3
3
  "definitions": {
4
- "SavedView": {}
4
+ "Region": {}
5
5
  },
6
6
  "$schema": "http://json-schema.org/draft-07/schema#"
7
7
  }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$ref": "#/definitions/ReplicationJob",
3
+ "definitions": {
4
+ "ReplicationJob": {}
5
+ },
6
+ "$schema": "http://json-schema.org/draft-07/schema#"
7
+ }