Skip to content

Commit

Permalink
Update OpenAPI spec files as of July 03, 2024 (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
falu-openapi[bot] committed Jul 8, 2024
1 parent 3ad9ede commit 06ae131
Show file tree
Hide file tree
Showing 2 changed files with 127 additions and 127 deletions.
150 changes: 75 additions & 75 deletions specs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -6726,35 +6726,23 @@
]
}
},
"/v1/identity/verifications": {
"/v1/identity/verification_reports": {
"get": {
"tags": [
"Identity Verifications"
"Identity Verification Reports"
],
"summary": "List identity verifications",
"operationId": "identity-verifications-list",
"summary": "List identity verification reports",
"operationId": "identity-verification-reports-list",
"parameters": [
{
"name": "status",
"in": "query",
"description": "Filter options for `status` property.",
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IdentityVerificationStatus"
}
}
},
{
"name": "type",
"name": "verification",
"in": "query",
"description": "Filter options for `type` property.",
"description": "Unique identifier of the Identity Verification to filter for.",
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IdentityVerificationType"
}
}
"type": "string",
"example": "idv_602a8dd0a54847479a874de4"
},
"example": "idv_602a8dd0a54847479a874de4"
},
{
"name": "created.eq",
Expand Down Expand Up @@ -6863,7 +6851,7 @@
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IdentityVerification"
"$ref": "#/components/schemas/IdentityVerificationReport"
}
}
}
Expand All @@ -6880,31 +6868,29 @@
}
},
"x-supports-pagination": true
},
"post": {
}
},
"/v1/identity/verification_reports/{id}": {
"get": {
"tags": [
"Identity Verifications"
"Identity Verification Reports"
],
"summary": "Create an identity verification",
"operationId": "identity-verifications-create",
"summary": "Retrieve an identity verification report",
"operationId": "identity-verification-reports-get",
"parameters": [
{
"name": "id",
"in": "path",
"description": "Unique identifier for the identity verification report",
"required": true,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/X-Falu-Version"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/IdentityVerificationCreateOptions"
}
]
}
}
}
},
"responses": {
"200": {
"description": "OK",
Expand All @@ -6919,7 +6905,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/IdentityVerification"
"$ref": "#/components/schemas/IdentityVerificationReport"
}
}
}
Expand All @@ -6933,29 +6919,38 @@
"403": {
"$ref": "#/components/responses/403"
}
},
"x-error-codes": [
"features_disabled"
]
}
}
},
"/v1/identity/verifications_reports": {
"/v1/identity/verifications": {
"get": {
"tags": [
"Identity Verification Reports"
"Identity Verifications"
],
"summary": "List identity verification reports",
"operationId": "identity-verification-reports-list",
"summary": "List identity verifications",
"operationId": "identity-verifications-list",
"parameters": [
{
"name": "verification",
"name": "status",
"in": "query",
"description": "Unique identifier of the Identity Verification to filter for.",
"description": "Filter options for `status` property.",
"schema": {
"type": "string",
"example": "idv_602a8dd0a54847479a874de4"
},
"example": "idv_602a8dd0a54847479a874de4"
"type": "array",
"items": {
"$ref": "#/components/schemas/IdentityVerificationStatus"
}
}
},
{
"name": "type",
"in": "query",
"description": "Filter options for `type` property.",
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IdentityVerificationType"
}
}
},
{
"name": "created.eq",
Expand Down Expand Up @@ -7064,7 +7059,7 @@
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IdentityVerificationReport"
"$ref": "#/components/schemas/IdentityVerification"
}
}
}
Expand All @@ -7081,29 +7076,31 @@
}
},
"x-supports-pagination": true
}
},
"/v1/identity/verifications_reports/{id}": {
"get": {
},
"post": {
"tags": [
"Identity Verification Reports"
"Identity Verifications"
],
"summary": "Retrieve an identity verification report",
"operationId": "identity-verification-reports-get",
"summary": "Create an identity verification",
"operationId": "identity-verifications-create",
"parameters": [
{
"name": "id",
"in": "path",
"description": "Unique identifier for the identity verification report",
"required": true,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/X-Falu-Version"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/IdentityVerificationCreateOptions"
}
]
}
}
}
},
"responses": {
"200": {
"description": "OK",
Expand All @@ -7118,7 +7115,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/IdentityVerificationReport"
"$ref": "#/components/schemas/IdentityVerification"
}
}
}
Expand All @@ -7132,7 +7129,10 @@
"403": {
"$ref": "#/components/responses/403"
}
}
},
"x-error-codes": [
"features_disabled"
]
}
},
"/v1/identity/verifications/{id}": {
Expand Down
Loading

0 comments on commit 06ae131

Please sign in to comment.