Strivacity Identity Verification Step API

The Identity Verification Step API from Strivacity — 2 operation(s) for identity verification step.

Operations 6

GET /admin/api/v1/identityProofings/{identityProofingId}/steps List identity verification steps #
POST /admin/api/v1/identityProofings/{identityProofingId}/steps Create an identity verification step #
PUT /admin/api/v1/identityProofings/{identityProofingId}/steps Reorder verification steps #
DELETE /admin/api/v1/identityProofings/{identityProofingId}/steps/{id} Delete an identity verification step #
GET /admin/api/v1/identityProofings/{identityProofingId}/steps/{id} Get an identity verification step #
PUT /admin/api/v1/identityProofings/{identityProofingId}/steps/{id} Update an identity verification step #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/strivacity-identity-verification-step-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

strivacity-identity-verification-step-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: API documentation of Admin Portal
  title: Admin Portal Identity Verification Step API
  version: v0.0.1
servers:
- url: https://{tenant}
  variables:
    tenant:
      default: example.strivacity.com
      description: Your Strivacity tenant
tags:
- name: Identity Verification Step
paths:
  /admin/api/v1/identityProofings/{identityProofingId}/steps:
    get:
      description: 'You can list the existing identity verification steps by calling this endpoint.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | read:config_identity_proofing |'
      operationId: findAll
      parameters:
      - in: path
        name: identityProofingId
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            '*/*':
              schema:
                type: array
                items:
                  oneOf:
                  - $ref: '#/components/schemas/IdentityProofingStepResponse'
                  - $ref: '#/components/schemas/AddressRiskEvaluationStepResponse'
                  - $ref: '#/components/schemas/DocumentVerificationStepResponse'
                  - $ref: '#/components/schemas/KnowledgeBasedVerificationStepResponse'
                  - $ref: '#/components/schemas/PhoneBasedIdentityAffirmationStepResponse'
                  - $ref: '#/components/schemas/PhoneNumberRiskStepResponse'
                  - $ref: '#/components/schemas/ProofingDataStepResponse'
          description: OK
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
      security:
      - securityScheme:
        - read:config_identity_proofing
      summary: List identity verification steps
      tags:
      - Identity Verification Step
    post:
      description: 'You can create an identity verification step by calling this endpoint.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | write:config_identity_proofing |'
      operationId: create_1
      parameters:
      - in: path
        name: identityProofingId
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              oneOf:
              - $ref: '#/components/schemas/IdentityVerificationStep_InsertRequest'
              - $ref: '#/components/schemas/IdentityVerification_AddressRiskEvaluationStep_InsertRequest'
              - $ref: '#/components/schemas/IdentityVerification_DataStep_InsertRequest'
              - $ref: '#/components/schemas/IdentityVerification_DocumentBasedStep_InsertRequest'
              - $ref: '#/components/schemas/IdentityVerification_KnowledgeBasedStep_InsertRequest'
              - $ref: '#/components/schemas/IdentityVerification_PhoneBasedStep_InsertRequest'
              - $ref: '#/components/schemas/IdentityVerification_PhoneNumberRiskStep_InsertRequest'
        required: true
      responses:
        '201':
          content:
            '*/*':
              schema:
                oneOf:
                - $ref: '#/components/schemas/IdentityProofingStepResponse'
                - $ref: '#/components/schemas/AddressRiskEvaluationStepResponse'
                - $ref: '#/components/schemas/DocumentVerificationStepResponse'
                - $ref: '#/components/schemas/KnowledgeBasedVerificationStepResponse'
                - $ref: '#/components/schemas/PhoneBasedIdentityAffirmationStepResponse'
                - $ref: '#/components/schemas/PhoneNumberRiskStepResponse'
                - $ref: '#/components/schemas/ProofingDataStepResponse'
          description: Created
        '400':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Bad Request
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
        '409':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Conflict
      security:
      - securityScheme:
        - write:config_identity_proofing
      summary: Create an identity verification step
      tags:
      - Identity Verification Step
    put:
      description: 'You can reorder verification steps by calling this endpoint. Request body should contain the existing verification step IDs in the desired order.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | write:config_identity_proofing |'
      operationId: reorder
      parameters:
      - in: path
        name: identityProofingId
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/IdReferenceRequest_IdentityProofing'
        required: true
      responses:
        '204':
          description: No Content
        '400':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Bad Request
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
      security:
      - securityScheme:
        - write:config_identity_proofing
      summary: Reorder verification steps
      tags:
      - Identity Verification Step
  /admin/api/v1/identityProofings/{identityProofingId}/steps/{id}:
    delete:
      description: 'You can delete an identity verification step by calling this endpoint.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | write:config_identity_proofing |'
      operationId: deleteById
      parameters:
      - in: path
        name: identityProofingId
        required: true
        schema:
          type: string
      - in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No Content
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
      security:
      - securityScheme:
        - write:config_identity_proofing
      summary: Delete an identity verification step
      tags:
      - Identity Verification Step
    get:
      description: 'You can get an identity verification step by calling this endpoint.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | read:config_identity_proofing |'
      operationId: findById
      parameters:
      - in: path
        name: identityProofingId
        required: true
        schema:
          type: string
      - in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            '*/*':
              schema:
                oneOf:
                - $ref: '#/components/schemas/IdentityProofingStepResponse'
                - $ref: '#/components/schemas/AddressRiskEvaluationStepResponse'
                - $ref: '#/components/schemas/DocumentVerificationStepResponse'
                - $ref: '#/components/schemas/KnowledgeBasedVerificationStepResponse'
                - $ref: '#/components/schemas/PhoneBasedIdentityAffirmationStepResponse'
                - $ref: '#/components/schemas/PhoneNumberRiskStepResponse'
                - $ref: '#/components/schemas/ProofingDataStepResponse'
          description: OK
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
      security:
      - securityScheme:
        - read:config_identity_proofing
      summary: Get an identity verification step
      tags:
      - Identity Verification Step
    put:
      description: 'You can update an identity verification step by calling this endpoint.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | write:config_identity_proofing |'
      operationId: update_7
      parameters:
      - in: path
        name: identityProofingId
        required: true
        schema:
          type: string
      - in: path
        name: id
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              oneOf:
              - $ref: '#/components/schemas/IdentityVerificationStep'
              - $ref: '#/components/schemas/IdentityVerificationAddressRiskEvaluationStep'
              - $ref: '#/components/schemas/IdentityVerificationDataStep'
              - $ref: '#/components/schemas/IdentityVerificationDocumentBasedStep'
              - $ref: '#/components/schemas/IdentityVerificationKnowledgeBasedStep'
              - $ref: '#/components/schemas/IdentityVerificationPhoneBasedStep'
              - $ref: '#/components/schemas/IdentityVerificationPhoneNumberRiskStep'
        required: true
      responses:
        '200':
          content:
            '*/*':
              schema:
                oneOf:
                - $ref: '#/components/schemas/IdentityProofingStepResponse'
                - $ref: '#/components/schemas/AddressRiskEvaluationStepResponse'
                - $ref: '#/components/schemas/DocumentVerificationStepResponse'
                - $ref: '#/components/schemas/KnowledgeBasedVerificationStepResponse'
                - $ref: '#/components/schemas/PhoneBasedIdentityAffirmationStepResponse'
                - $ref: '#/components/schemas/PhoneNumberRiskStepResponse'
                - $ref: '#/components/schemas/ProofingDataStepResponse'
          description: OK
        '400':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Bad Request
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
        '409':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Conflict
      security:
      - securityScheme:
        - write:config_identity_proofing
      summary: Update an identity verification step
      tags:
      - Identity Verification Step
components:
  schemas:
    ProblemJson:
      type: object
      properties:
        detail:
          type: string
        entityName:
          type: string
          description: The name of the entity within the error has occurred
        errorKey:
          type: string
          description: A unique identifier of the error
        fieldErrors:
          type: array
          description: Field constraint violation errors
          items:
            $ref: '#/components/schemas/FieldError'
        message:
          type: string
          description: A unique identifier in format of 'error.{errorKey}'
        params:
          type: array
          description: Further information related to the actual error
          items:
            type: object
            additionalProperties:
              type: object
        path:
          type: string
          description: Request URI
        status:
          type: integer
          description: Status code
          format: int32
        title:
          type: string
      description: Based on [RFC 7807](https://datatracker.ietf.org/doc/html/rfc7807)
    ProofingDataStepFieldResponse:
      type: object
      properties:
        displayName:
          type: string
        id:
          type: string
        type:
          type: string
          enum:
          - nativeClaim
          - compoundAddress
      discriminator:
        propertyName: type
    IdentityVerificationKnowledgeBasedVerificationStepAttribute:
      required:
      - nativeClaim
      type: object
      properties:
        nativeClaim:
          $ref: '#/components/schemas/OnlyIdRequest'
    IdentityVerificationDocumentBasedStepConfiguration:
      required:
      - address
      - document
      - personal
      type: object
      properties:
        address:
          $ref: '#/components/schemas/DocumentVerificationAddress'
        document:
          $ref: '#/components/schemas/DocumentVerificationDocument'
        personal:
          $ref: '#/components/schemas/DocumentVerificationPersonal'
      description: Represents the configuration of a document based identity verification step
    AddressRiskEvaluationContact:
      required:
      - email
      - phone
      type: object
      properties:
        email:
          $ref: '#/components/schemas/IdentityVerificationAddressRiskVerificationAttribute'
        phone:
          $ref: '#/components/schemas/IdentityVerificationAddressRiskVerificationAttribute'
    DataSources:
      type: object
      properties:
        city:
          $ref: '#/components/schemas/DataSourceResponse'
        countryCode:
          $ref: '#/components/schemas/DataSourceResponse'
        dateOfBirth:
          $ref: '#/components/schemas/DataSourceResponse'
        familyName:
          $ref: '#/components/schemas/DataSourceResponse'
        givenName:
          $ref: '#/components/schemas/DataSourceResponse'
        nationalId:
          $ref: '#/components/schemas/DataSourceResponse'
        postalCode:
          $ref: '#/components/schemas/DataSourceResponse'
        state:
          $ref: '#/components/schemas/DataSourceResponse'
        streetAddress:
          $ref: '#/components/schemas/DataSourceResponse'
    PhoneNumberRiskAttributeResponse:
      type: object
      properties:
        nativeClaim:
          $ref: '#/components/schemas/NameIdAndDisplayName'
    ProofingDataStepNativeClaimField:
      required:
      - configuration
      - id
      type: object
      description: Proofing data step field for Native Claim
      allOf:
      - $ref: '#/components/schemas/IdentityVerificationDataStepField'
      - type: object
        properties:
          configuration:
            $ref: '#/components/schemas/IdentityVerificationDataStepNativeClaimConfiguration'
    IdentityVerificationDataStepNativeClaimConfiguration:
      required:
      - displayOption
      - nativeClaim
      type: object
      properties:
        displayOption:
          type: string
          enum:
          - readOnly
          - readOnlyMasked
          - readWrite
        nativeClaim:
          $ref: '#/components/schemas/OnlyIdRequest'
        required:
          type: boolean
          default: true
    IdentityVerificationDocumentVerificationAttribute:
      type: object
      properties:
        nativeClaim:
          $ref: '#/components/schemas/OnlyIdRequest'
      description: Represents a document verification attribute for document verification step
    IdentityVerificationStep_InsertRequest:
      required:
      - actions
      - type
      type: object
      properties:
        actions:
          $ref: '#/components/schemas/IdentityVerificationStepAction'
        enabled:
          type: boolean
          default: false
        type:
          type: string
          enum:
          - addressRiskEvaluation
          - documentVerification
          - knowledgeBasedVerification
          - phoneNumberRiskEvaluation
          - phoneBasedIdentityAffirmation
          - proofingData
      description: Represents an identity verification step
      discriminator:
        propertyName: type
    ClaimManagement:
      type: object
      properties:
        address:
          $ref: '#/components/schemas/AddressRiskEvaluationAddress'
        contact:
          $ref: '#/components/schemas/AddressRiskEvaluationContact'
        personal:
          $ref: '#/components/schemas/AddressRiskEvaluationPersonal'
    IdentityVerificationAddressRiskEvaluationStepConfiguration:
      required:
      - claimManagement
      - ruleManagement
      type: object
      properties:
        claimManagement:
          $ref: '#/components/schemas/ClaimManagement'
        ruleManagement:
          $ref: '#/components/schemas/RuleManagement'
      description: Represents the configuration of a address risk evaluation step configuration
    IdentityVerificationDataStepField:
      required:
      - id
      type: object
      properties:
        displayName:
          maxLength: 64
          minLength: 0
          pattern: ^$|^[\p{L}\p{N}\-.:\/_(){}\[\]|&'"?!@+*°]([\p{L}\p{N}\-.:\/_(){}\[\]|&'"?!@+*° ]*[\p{L}\p{N}\-.:\/_(){}\[\]|&'"?!@+*°])?$
          type: string
        id:
          type: string
        type:
          type: string
          enum:
          - nativeClaim
          - compoundAddress
      description: Represents a field of an identity verification data step
      discriminator:
        propertyName: type
      oneOf:
      - $ref: '#/components/schemas/ProofingDataStepCompoundAddressField'
      - $ref: '#/components/schemas/ProofingDataStepNativeClaimField'
    IdentityVerificationPhoneBasedStepConfiguration:
      required:
      - dataSources
      - phoneNumber
      type: object
      properties:
        dataSources:
          $ref: '#/components/schemas/IdentityVerificationPhoneBasedStepConfigurationDataSource'
        failureCountThreshold:
          minimum: 1
          type: integer
          format: int32
          default: 1
        phoneNumber:
          $ref: '#/components/schemas/IdentityVerificationPhoneBasedStepPhoneNumberAffirmationAttribute'
      description: Represents the configuration of a phone based identity verification step
    DocumentVerificationDocument:
      required:
      - className
      - expirationDate
      - issueDate
      - issuerCode
      - issuerName
      - name
      - number
      type: object
      properties:
        className:
          $ref: '#/components/schemas/IdentityVerificationDocumentVerificationAttribute'
        expirationDate:
          $ref: '#/components/schemas/IdentityVerificationDocumentVerificationAttribute'
        issueDate:
          $ref: '#/components/schemas/IdentityVerificationDocumentVerificationAttribute'
        issuerCode:
          $ref: '#/components/schemas/IdentityVerificationDocumentVerificationAttribute'
        issuerName:
          $ref: '#/components/schemas/IdentityVerificationDocumentVerificationAttribute'
        name:
          $ref: '#/components/schemas/IdentityVerificationDocumentVerificationAttribute'
        number:
          $ref: '#/components/schemas/IdentityVerificationDocumentVerificationAttribute'
    RuleManagement:
      required:
      - attributeRules
      - riskRules
      type: object
      properties:
        attributeRules:
          type: array
          items:
            $ref: '#/components/schemas/Rule'
        riskRules:
          type: array
          items:
            $ref: '#/components/schemas/Rule'
        scoreThreshold:
          minimum: 0
          type: integer
          format: int32
    IdentityVerificationPhoneBasedStepIdentityAffirmationAttribute:
      required:
      - failureCriteria
      - thresholdAction
      type: object
      properties:
        failureCriteria:
          type: string
          enum:
          - exactMatch
          - highPartialMatch
          - partialMatch
        nativeClaim:
          $ref: '#/components/schemas/OnlyIdRequest'
        thresholdAction:
          type: string
          enum:
          - none
          - mandatoryToPass
          - failureCount
      description: Represents an identity affirmation attribute for phone based identity verification step
    IdentityVerification_KnowledgeBasedStep_InsertRequest:
      required:
      - actions
      - configuration
      - id
      - type
      type: object
      description: Represents a knowledge based identity verification step
      allOf:
      - required:
        - actions
        - type
        type: object
        properties:
          actions:
            $ref: '#/components/schemas/IdentityVerificationStepAction'
          enabled:
            type: boolean
            default: false
          type:
            type: string
            enum:
            - addressRiskEvaluation
            - documentVerification
            - knowledgeBasedVerification
            - phoneNumberRiskEvaluation
            - phoneBasedIdentityAffirmation
            - proofingData
        description: Represents an identity verification step
        discriminator:
          propertyName: type
      - type: object
        properties:
          configuration:
            $ref: '#/components/schemas/IdentityVerificationKnowledgeBasedStepConfiguration'
    IdentityVerificationPhoneNumberRiskStepAttribute:
      required:
      - nativeClaim
      type: object
      properties:
        nativeClaim:
          $ref: '#/components/schemas/OnlyIdRequest'
      description: Represents an attribute for phone number risk based identity verification step
    IdentityVerification_DocumentBasedStep_InsertRequest:
      required:
      - actions
      - configuration
      - id
      - type
      type: object
      description: Represents a document based identity verification step
      allOf:
      - required:
        - actions
        - type
        type: object
        properties:
          actions:
            $ref: '#/components/schemas/IdentityVerificationStepAction'
          enabled:
            type: boolean
            default: false
          type:
            type: string
            enum:
            - addressRiskEvaluation
            - documentVerification
            - knowledgeBasedVerification
            - phoneNumberRiskEvaluation
            - phoneBasedIdentityAffirmation
            - proofingData
        description: Represents an identity verification step
        discriminator:
          propertyName: type
      - type: object
        properties:
          configuration:
            $ref: '#/components/schemas/IdentityVerificationDocumentBasedStepConfiguration'
    PhoneBasedIdentityAffirmationAttributeResponse:
      type: object
      properties:
        nativeClaim:
          $ref: '#/components/schemas/NameIdAndDisplayName'
    NameIdAndDisplayName:
      type: object
      properties:
        displayName:
          type: string
          description: Display name of the represented entity
        id:
          type: string
          description: ID of the represented entity
        name:
          type: string
          description: Name of the represented entity
    RuleResponse:
      type: object
      properties:
        action:
          type: string
        criteria:
          type: string
        type:
          type: string
    AddressRiskEvaluationStepResponse:
      type: object
      allOf:
      - $ref: '#/components/schemas/IdentityProofingStepResponse'
      - type: object
        properties:
          configuration:
            $ref: '#/components/schemas/AddressRiskEvaluationStepConfigurationResponse'
    ProofingDataStepCompoundAddressField:
      required:
      - configuration
      - id
      type: object
      description: Proofing data step field for compound address
      allOf:
      - $ref: '#/components/schemas/IdentityVerificationDataStepField'
      - type: object
        properties:
          configuration:
            $ref: '#/components/schemas/CompoundAddressFieldConfigurationUpsertRequest'
    CompoundAddressItem:
      type: object
      properties:
        nativeClaim:
          $ref: '#/components/schemas/OnlyIdRequest'
        required:
          type: boolean
    ProofingDataStepConfigurationResponse:
      type: object
      properties:
        description:
          type: string
        displayText:
          type: string
        fields:
          uniqueItems: true
          type: array
          items:
            oneOf:
            - $ref: '#/components/schemas/ProofingDataStepFieldResponse'
            - $ref: '#/components/schemas/ProofingDataStepCompoundAddressFieldResponse'
            - $ref: '#/components/schemas/ProofingDataStepNativeClaimFieldResponse'
        name:
          type: string
    Rule:
      required:
      - action
      - criteria
      - type
      type: object
      properties:
        action:
          minLength: 1
          type: string
        criteria:
          minLength: 1
          type: string
        type:
          minLength: 1
          type: string
    OnlyIdRequest:
      required:
      - id
      type: object
      properties:
        id:
          pattern: ^[a-zA-Z0-9-]{1,36}$
          type: string
    AddressRiskEvaluationContactResponse:
      type: object
      properties:
        email:
          $ref: '#/components/schemas/AddressRiskEvaluationAttributeResponse'
        phone:
          $ref: '#/components/schemas/AddressRiskEvaluationAttributeResponse'
    PhoneNumberRiskStepResponse:
      type: object
      allOf:
      - $ref: '#/components/schemas/IdentityProofingStepResponse'
      - type: object
        properties:
          configuration:
            $ref: '#/components/schemas/PhoneNumberRiskStepConfigurationResponse'
    ForbiddenPhoneTypesResponse:
      type: object
      properties:
        fixedVoip:
          type: boolean
        landLine:
          type: boolean
        mobile:
          type: boolean
        nonFixedVoip:
          type: boolean
        other:
          type: boolean
    IdentityVerificationKnowledgeBasedStepConfiguration:
      required:
      - city
      - countryCode
      - dateOfBirth
      - familyName
      - givenName
      - phoneNumber
      - postalCode
      - state
      - streetAddress
      type: object
      properties:
        city:
          $ref: '#/components/schemas/IdentityVerificationKnowledgeBasedVerificationStepAttribute'
        countryCode:
          $ref: '#/components/schemas/IdentityVerificationNullableKnowledgeBasedVerificationStepAttribute'
        dateOfBirth:
          $ref: '#/components/schemas/IdentityVerificationKnowledgeBasedVerificationStepAttribute'
        familyName:
          $ref: '#/components/schemas/IdentityVerificationKnowledgeBasedVerificationStepAttribute'
        givenName:
          $ref: '#/components/schemas/IdentityVerificationKnowledgeBasedVerificationStepAttribute'
        phoneNumber:
          $ref: '#/components/schemas/IdentityVerificationKnowledgeBasedVerificationStepAttribute'
        postalCode:
          $ref: '#/components/schemas/IdentityVerificationKnowledgeBasedVerificationStepAttribute'
        state:
          $ref: '#/components/schemas/IdentityVerificationKnowledgeBasedVerificationStepAttribute'
        streetAddress:
          $ref: '#/components/schemas/IdentityVerificationKnowledgeBasedVerificationStepAttribute'
    IdentityVerificationPhoneBasedStepPhoneNumberAffirmationAttribute:
      required:
      - nativeClaim
      type: object
      properties:
        nativeClaim:
          $ref: '#/components/schemas/OnlyIdRequest'
      description: Represents a phone number affirmation attribute for phone based identity verification step
    AddressRiskEvaluationPersonal:
      required:
      - familyName
      - givenName
      type: object
      properties:
        familyName:
          $ref: '#/components/schemas/IdentityVerificationAddressRiskVerificationAttribute'
        givenName:
          $ref: '#/components/schemas/IdentityVerificationAddressRiskVerificationAttribute'
    KnowledgeBasedVerificationStepResponse:
      type: object
      allOf:
      - $ref: '#/components/schemas/IdentityProofingStepResponse'
      - type: object
        properties:
          configuration:
            $ref: '#/components/schemas/KnowledgeBasedVerificationStepConfigurationResponse'
    IdentityVerificationPhoneNumberRiskStep:
      required:
      - actions
      - configuration
      - id
      - type
      type: object
      description: Represents phone number risk based identity verification step
      allOf:
      - $ref: '#/components/schemas/IdentityVerificationStep'
      - type: object
        properties:
          configuration:
            $ref: '#/components/schemas/IdentityVerificationPhoneNumberRiskStepConfiguration'
    IdentityVerificationAddressRiskVerificationAttribute:
      type: object
      properties:
        nativeClaim:
          $ref: '#/components/schemas/OnlyIdRequest'
      description: Represents an address risk verification attribute for address risk verification step
    IdentityVerificationPhoneNumberRiskStepForbiddenPhoneTypes:
      type: object
      properties:
        fixedVoip:
          type: boolean
        landLine:
          type: boolean
        mobile:
          type: boolean
        nonFixedVoip:
          type: boolean
        other:
          type: boolean
      description: Represents forbidden phone types for a phone number risk based identity verification step
    AddressRiskEvaluationPersonalResponse:
      type: object
      properties:
        familyName:
          $ref: '#/components/schemas/AddressRiskEvaluationAttributeResponse'
        givenName:
          $ref: '#/components/schemas/AddressRiskEvaluationAttributeResponse'
    ItemResponse:
      type: object
      properties:
        nativeClaim:
          $ref: '#/components/schemas/NameIdAndDisplayName'
        required:
          type: boolean
    PhoneNumberRiskStepConfigurationResponse:
      type: object
      properties:
        forbiddenPhoneTypes:
          $ref: '#/components/schemas/ForbiddenPhoneTypesResponse'
        numberPortingRisk:
          type: boolean
        phoneNumber:
          $ref: '#/components/schemas/PhoneNumberRiskAttributeResponse'
    IdentityProofingStepResponse:
      type: object
      properties:
        actions:
          $ref: '#/components/schemas/Actions'
        enabled:
          type: boolean
        id:
          type: string
        type:
          type: string
          enum:
          - addressRiskEvaluation
          - documentVerification
          - knowledgeBasedVerification
          - phoneNumberRiskEvaluation
          - phoneBasedIdentityAffirmation
          - proofingData
      discriminator:
        propertyName: type
    DataSourceResp

# --- truncated at 32 KB (54 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/strivacity/refs/heads/main/openapi/strivacity-identity-verification-step-api-openapi.yml