Skip to content

Commit

Permalink
Fix headers and schema definition (#27180)
Browse files Browse the repository at this point in the history
Co-authored-by: Bo Wang <[email protected]>
  • Loading branch information
wangbwn and BoWangzi1 authored Jan 17, 2024
1 parent fa40a42 commit 97cefc8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"schema": {
"type": "object",
"x-ms-format": "dfe-object",
"x-ms-format": "dfe-list-generic",
"x-ms-format-element-type": "DatasetSchemaDataElement",
"description": "Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement."
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7133,8 +7133,11 @@
},
"headers": {
"type": "object",
"x-ms-format": "dfe-key-value-pairs",
"description": "Represents the headers that will be sent to the request. For example, to set the language and type on a request: \"headers\" : { \"Accept-Language\": \"en-us\", \"Content-Type\": \"application/json\" }. Type: dictionary (or Expression with resultType dictionary)."
"description": "Represents the headers that will be sent to the request. For example, to set the language and type on a request: \"headers\" : { \"Accept-Language\": \"en-us\", \"Content-Type\": \"application/json\" }. Type: string (or Expression with resultType string).",
"additionalProperties": {
"type": "string",
"x-ms-format": "dfe-string"
}
},
"body": {
"type": "object",
Expand Down Expand Up @@ -8171,8 +8174,11 @@
},
"headers": {
"type": "object",
"x-ms-format": "dfe-key-value-pairs",
"description": "Represents the headers that will be sent to the request. For example, to set the language and type on a request: \"headers\" : { \"Accept-Language\": \"en-us\", \"Content-Type\": \"application/json\" }. Type: dictionary (or Expression with resultType dictionary)."
"description": "Represents the headers that will be sent to the request. For example, to set the language and type on a request: \"headers\" : { \"Accept-Language\": \"en-us\", \"Content-Type\": \"application/json\" }. Type: string (or Expression with resultType string).",
"additionalProperties": {
"type": "string",
"x-ms-format": "dfe-string"
}
},
"body": {
"type": "object",
Expand Down Expand Up @@ -8237,8 +8243,11 @@
},
"headers": {
"type": "object",
"x-ms-format": "dfe-key-value-pairs",
"description": "Represents the headers that will be sent to the request. For example, to set the language and type on a request: \"headers\" : { \"Accept-Language\": \"en-us\", \"Content-Type\": \"application/json\" }. Type: dictionary (or Expression with resultType dictionary)."
"description": "Represents the headers that will be sent to the request. For example, to set the language and type on a request: \"headers\" : { \"Accept-Language\": \"en-us\", \"Content-Type\": \"application/json\" }. Type: string (or Expression with resultType string).",
"additionalProperties": {
"type": "string",
"x-ms-format": "dfe-string"
}
},
"body": {
"type": "object",
Expand Down

0 comments on commit 97cefc8

Please sign in to comment.