Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-11-07 03:10:33 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-11-07 03:10:33 +0300
commit611897b987d439b0d736eb87415b8ca32bdaa282 (patch)
tree7d74c5c722165cc62d1b6974bd81886895dedfe2 /spec/fixtures
parenta303eb5d329ee4fee3ad76b9c2e32ce1d6d4a13b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/fixtures')
-rw-r--r--spec/fixtures/api/schemas/ml/update_model.json51
1 files changed, 51 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/ml/update_model.json b/spec/fixtures/api/schemas/ml/update_model.json
new file mode 100644
index 00000000000..6b7ced6845b
--- /dev/null
+++ b/spec/fixtures/api/schemas/ml/update_model.json
@@ -0,0 +1,51 @@
+{
+ "type": "object",
+ "required": [
+ "registered_model"
+ ],
+ "properties": {
+ "model": {
+ "type": "object",
+ "required": [
+ "name",
+ "description",
+ "user_id"
+ ],
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "description": {
+ "type": "string"
+ },
+ "user_id": {
+ "type": "integer"
+ },
+ "creation_timestamp": {
+ "type": "string"
+ },
+ "last_updated_timestamp": {
+ "type": "string"
+ },
+ "tags": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "required": [
+ "key",
+ "value"
+ ],
+ "properties": {
+ "key": {
+ "type": "string"
+ },
+ "value": {
+ "type": "string"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}