Skip to content
Merged
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
"required": true,
"type": "string",
"maxLength": 50,
"pattern": "^[A-Za-z0-9][A-Za-z0-9_-]*$"
"pattern": "^[A-Za-z0-9][^\\\\/$:]*$"
},
{
"$ref": "#/parameters/ApiVersionParameter"
Expand Down Expand Up @@ -234,7 +234,7 @@
"required": true,
"type": "string",
"maxLength": 50,
"pattern": "^[A-Za-z0-9][A-Za-z0-9_-]*$"
"pattern": "^[A-Za-z0-9][^\\\\/$:]*$"
},
{
"name": "schemaContent",
Expand Down Expand Up @@ -281,7 +281,17 @@
}
},
"415": {
"description": "Unsupported Media Type - Content type of the supplied schema is unsupported by schema group."
"description": "Unsupported Media Type - Content type of the supplied schema is unsupported by schema group.",
"headers": {
"x-ms-error-code": {
"type": "string",
"description": "Error code for specific error that occurred."
}
},
"schema": {
"$ref": "#/definitions/Error"
},
"x-ms-error-response": true
},
"default": {
"description": "An error response received from the Azure Schema Registry service.",
Expand Down Expand Up @@ -329,7 +339,7 @@
"required": true,
"type": "string",
"maxLength": 50,
"pattern": "^[A-Za-z0-9][A-Za-z0-9_-]*$"
"pattern": "^[A-Za-z0-9][^\\\\/$:]*$"
},
{
"name": "schemaContent",
Expand Down Expand Up @@ -376,7 +386,17 @@
}
},
"415": {
"description": "Unsupported Media Type - Content type of the supplied schema is unsupported by schema group."
"description": "Unsupported Media Type - Content type of the supplied schema is unsupported by schema group.",
"headers": {
"x-ms-error-code": {
"type": "string",
"description": "Error code for specific error that occurred."
}
},
"schema": {
"$ref": "#/definitions/Error"
},
"x-ms-error-response": true
},
"default": {
"description": "An error response received from the Azure Schema Registry service.",
Expand Down