Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Search SDK: Tweaking Swagger specs for data plane SDK #21

Merged
merged 3 commits into from
Sep 29, 2015
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The structure of the directory should strictly follow these rules:
- The top level folder must be the service name
- The second level must be the API versions
- The third level must be the format of the specification
- The forth level must be the specifications
- The fourth level must be the specifications

The structure should appear like so:
```bash
Expand Down
144 changes: 24 additions & 120 deletions search/2015-02-28/swagger/searchindex.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,10 @@
"version": "2015-02-28"
},
"consumes": [
"application/json",
"text/json"
"application/json;odata.metadata=none"
],
"produces": [
"application/json",
"text/json"
"application/json"
],
"paths": {
"/docs/$count": {
Expand All @@ -27,9 +25,6 @@
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/SubscriptionIdParameter"
}
],
"responses": {
Expand All @@ -56,66 +51,30 @@
"$ref": "#/definitions/IndexResult"
},
"description": "Gets the list of status information for each document in the indexing request."
},
"statusCode": {
"type": "string",
"enum": [
"Continue",
"SwitchingProtocols",
"OK",
"Created",
"Accepted",
"NonAuthoritativeInformation",
"NoContent",
"ResetContent",
"PartialContent",
"MultipleChoices",
"Ambiguous",
"MovedPermanently",
"Moved",
"Found",
"Redirect",
"SeeOther",
"RedirectMethod",
"NotModified",
"UseProxy",
"Unused",
"TemporaryRedirect",
"RedirectKeepVerb",
"BadRequest",
"Unauthorized",
"PaymentRequired",
"Forbidden",
"NotFound",
"MethodNotAllowed",
"NotAcceptable",
"ProxyAuthenticationRequired",
"RequestTimeout",
"Conflict",
"Gone",
"LengthRequired",
"PreconditionFailed",
"RequestEntityTooLarge",
"RequestUriTooLong",
"UnsupportedMediaType",
"RequestedRangeNotSatisfiable",
"ExpectationFailed",
"UpgradeRequired",
"InternalServerError",
"NotImplemented",
"BadGateway",
"ServiceUnavailable",
"GatewayTimeout",
"HttpVersionNotSupported"
],
"x-ms-enum": "HttpStatusCode"
},
"requestId": {
"type": "string"
}
},
"description": "Response containing the status of operations for all documents in the indexing request."
},
"IndexActionType": {
"type": "string",
"enum": [
"upload",
"merge",
"mergeOrUpload",
"delete"
],
"x-ms-enum": "IndexActionType",
"description": "Specifies the operation to perform on a document in an indexing batch."
},
"SearchMode": {
"type": "string",
"enum": [
"any",
"all"
],
"x-ms-enum": "SearchMode",
"description": "Specifies whether any or all of the search terms must be matched in order to count the document as a match."
},
"SearchParameters": {
"properties": {
"filter": {
Expand Down Expand Up @@ -175,13 +134,8 @@
"description": "Gets or sets the list of field names to include in the full-text search."
},
"searchMode": {
"type": "string",
"description": "Gets or sets a value that specifies whether any or all of the search terms must be matched in order to count the document as a match.",
"enum": [
"any",
"all"
],
"x-ms-enum": "SearchMode"
"$ref": "#/definitions/SearchMode",
"description": "Gets or sets a value that specifies whether any or all of the search terms must be matched in order to count the document as a match."
},
"select": {
"type": "array",
Expand Down Expand Up @@ -260,59 +214,9 @@
}
},
"description": "Parameters for filtering, sorting, fuzzy matching, and other suggestions query behaviors."
},
"Resource": {
"properties": {
"id": {
"readOnly": true,
"type": "string",
"description": "Resource Id"
},
"name": {
"readOnly": true,
"type": "string",
"description": "Resource name"
},
"type": {
"readOnly": true,
"type": "string",
"description": "Resource type"
},
"location": {
"type": "string",
"description": "Resource location"
},
"tags": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Resource tags"
}
},
"required": [
"location"
],
"x-ms-external": true
},
"SubResource": {
"properties": {
"id": {
"type": "string",
"description": "Resource Id"
}
},
"x-ms-external": true
}
},
"parameters": {
"SubscriptionIdParameter": {
"name": "subscriptionId",
"in": "path",
"required": true,
"type": "string",
"description": "Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call."
},
"ApiVersionParameter": {
"name": "api-version",
"in": "query",
Expand Down
Loading