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

Add tags and fake descriptions #2

Merged
merged 1 commit into from
Aug 5, 2021
Merged
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
41 changes: 40 additions & 1 deletion sdk/formrecognizer/azure-ai-formrecognizer/swagger/fr-3.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
"post": {
"summary": "Analyze document",
"description": "Analyzes document with model.",
"tags": [
"Analysis"
],
"operationId": "Analyze document",
"consumes": [
"application/json",
Expand Down Expand Up @@ -147,6 +150,9 @@
"get": {
"summary": "Get analyze result",
"description": "Gets the result of document analysis.",
"tags": [
"Analysis"
],
"operationId": "Get analyze result",
"consumes": [],
"produces": [
Expand Down Expand Up @@ -183,6 +189,9 @@
"post": {
"summary": "Build model",
"operationId": "Build model",
"tags": [
"Creation"
],
"description": "Builds a custom document analysis model.",
"consumes": [
"application/json"
Expand Down Expand Up @@ -250,6 +259,9 @@
"summary": "Compose model",
"description": "Creates a new model from document types of existing models.",
"operationId": "Compose model",
"tags": [
"Creation"
],
"consumes": [
"application/json"
],
Expand Down Expand Up @@ -323,6 +335,9 @@
"summary": "Generate copy authorization",
"description": "Generates authorization to copy a model to this location with specified modelId and optional description.",
"operationId": "Authorize copy",
"tags": [
"Creation"
],
"consumes": [
"application/json"
],
Expand Down Expand Up @@ -375,6 +390,9 @@
"summary": "Copy model",
"description": "Copies model to the target resource, region, and modelId.",
"operationId": "Copy model",
"tags": [
"Creation"
],
"consumes": [
"application/json"
],
Expand Down Expand Up @@ -422,6 +440,9 @@
"summary": "List operations",
"description": "Lists all operations.",
"operationId": "List operations",
"tags": [
"Operation"
],
"consumes": [],
"produces": [
"application/json"
Expand Down Expand Up @@ -472,6 +493,9 @@
"summary": "Get operation",
"description": "Gets operation info.",
"operationId": "Get operation info",
"tags": [
"Operation"
],
"consumes": [],
"produces": [
"application/json"
Expand Down Expand Up @@ -522,6 +546,9 @@
"summary": "List models",
"description": "List all models",
"operationId": "List all models",
"tags": [
"Management"
],
"consumes": [],
"produces": [
"application/json"
Expand Down Expand Up @@ -572,6 +599,9 @@
"summary": "Get model",
"description": "Gets detailed model information.",
"operationId": "Get model",
"tags": [
"Management"
],
"consumes": [],
"produces": [
"application/json"
Expand Down Expand Up @@ -603,6 +633,9 @@
"summary": "Delete model",
"description": "Deletes model.",
"operationId": "Delete model",
"tags": [
"Management"
],
"consumes": [],
"produces": [
"application/json"
Expand Down Expand Up @@ -633,6 +666,9 @@
"summary": "Get info",
"description": "Return basic info about the current resource.",
"operationId": "Get Info",
"tags": [
"Management"
],
"consumes": [],
"produces": [
"application/json"
Expand All @@ -652,6 +688,7 @@
],
"properties": {
"customDocumentModels": {
"description": "Custom document models",
"type": "object",
"required": [
"count",
Expand Down Expand Up @@ -719,7 +756,8 @@
"items": {
"$ref": "#/definitions/Error"
},
"type": "array"
"type": "array",
"description": "Error details"
},
"innererror": {
"$ref": "#/definitions/InnerError"
Expand Down Expand Up @@ -1426,6 +1464,7 @@
],
"properties": {
"kind": {
"description": "DocumentTableCell kind",
"type": "string",
"enum": [
"content",
Expand Down