Ping Identity DaVinci Admin Flow Versions API

Operations for managing DaVinci flow versions

Operations 5

GET /environments/{environmentID}/flows/{flowID}/versions #
GET /environments/{environmentID}/flows/{flowID}/versions/{versionID} #
DELETE /environments/{environmentID}/flows/{flowID}/versions/{versionID} #
PUT /environments/{environmentID}/flows/{flowID}/versions/{versionID}/alias #
GET /environments/{environmentID}/flows/{flowID}/versions/{versionID}/details #

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/ping-identity-davinci-admin-flow-versions-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

ping-identity-davinci-admin-flow-versions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: PingOne Platform DaVinci Admin Flow Versions API
  version: 2026.01.07-beta
  description: PingOne is a cloud-based framework for secure identity access management. The PingOne API gives developers the tools to integrate enterprise and third-party applications with the PingOne platform.
  contact:
    name: Ping Identity Developer Experiences
    url: https://developer.pingidentity.com
    email: devex@pingidentity.com
  license:
    identifier: Apache-2.0
    name: Apache 2.0
servers:
- url: https://api.pingone.{tld}/{basePath}
  variables:
    basePath:
      default: v1
    tld:
      enum:
      - eu
      - com
      - asia
      - com.au
      - ca
      - sg
      default: com
security:
- bearerAuth: []
- oauth2: []
tags:
- name: DaVinci Admin Flow Versions
  description: Operations for managing DaVinci flow versions
paths:
  /environments/{environmentID}/flows/{flowID}/versions:
    get:
      operationId: getVersionsByFlowId
      parameters:
      - $ref: '#/components/parameters/com.pingidentity.path.environments.environmentID'
      - $ref: '#/components/parameters/com.pingidentity.path.environments.flows.flowID'
      - $ref: '#/components/parameters/com.pingidentity.header.ExternalSessionID'
      - $ref: '#/components/parameters/com.pingidentity.header.ExternalTransactionID'
      responses:
        '200':
          description: Successful Operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/com.pingidentity.pingone.davinci.flowversions.response.FlowVersionsResponse'
        '400':
          $ref: '#/components/responses/http.400.BadRequest'
        '401':
          $ref: '#/components/responses/http.401.Unauthorized'
        '403':
          $ref: '#/components/responses/http.403.Forbidden.P14C63085'
        '404':
          $ref: '#/components/responses/http.404.NotFound'
        '415':
          $ref: '#/components/responses/http.415.UnsupportedMediaType'
        '429':
          $ref: '#/components/responses/http.429.TooManyRequests'
        '500':
          $ref: '#/components/responses/http.500.InternalServerError'
        '502':
          $ref: '#/components/responses/http.502.BadGateway'
        '503':
          $ref: '#/components/responses/http.503.ServiceUnavailable'
      x-permission: davinci:read:flowVersions
      tags:
      - DaVinci Admin Flow Versions
  /environments/{environmentID}/flows/{flowID}/versions/{versionID}:
    get:
      operationId: getVersionByIdUsingFlowId
      parameters:
      - $ref: '#/components/parameters/com.pingidentity.path.environments.environmentID'
      - $ref: '#/components/parameters/com.pingidentity.path.environments.flows.flowID'
      - $ref: '#/components/parameters/com.pingidentity.path.environments.flows.versions.versionID'
      - $ref: '#/components/parameters/com.pingidentity.header.ExternalSessionID'
      - $ref: '#/components/parameters/com.pingidentity.header.ExternalTransactionID'
      responses:
        '200':
          description: Successful Operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/com.pingidentity.pingone.davinci.flowversions.response.FlowVersionResponse'
        '400':
          $ref: '#/components/responses/http.400.BadRequest'
        '401':
          $ref: '#/components/responses/http.401.Unauthorized'
        '403':
          $ref: '#/components/responses/http.403.Forbidden.P14C63085'
        '404':
          $ref: '#/components/responses/http.404.NotFound'
        '415':
          $ref: '#/components/responses/http.415.UnsupportedMediaType'
        '429':
          $ref: '#/components/responses/http.429.TooManyRequests'
        '500':
          $ref: '#/components/responses/http.500.InternalServerError'
        '502':
          $ref: '#/components/responses/http.502.BadGateway'
        '503':
          $ref: '#/components/responses/http.503.ServiceUnavailable'
      x-permission: davinci:read:flowVersions
      tags:
      - DaVinci Admin Flow Versions
    delete:
      operationId: deleteVersionByIdUsingFlowId
      parameters:
      - $ref: '#/components/parameters/com.pingidentity.path.environments.environmentID'
      - $ref: '#/components/parameters/com.pingidentity.path.environments.flows.flowID'
      - $ref: '#/components/parameters/com.pingidentity.path.environments.flows.versions.versionID'
      - $ref: '#/components/parameters/com.pingidentity.header.ExternalSessionID'
      - $ref: '#/components/parameters/com.pingidentity.header.ExternalTransactionID'
      responses:
        '204':
          description: Successfully removed. No content.
        '400':
          $ref: '#/components/responses/http.400.BadRequest'
        '401':
          $ref: '#/components/responses/http.401.Unauthorized'
        '403':
          $ref: '#/components/responses/http.403.Forbidden.P14C63085'
        '404':
          $ref: '#/components/responses/http.404.NotFound'
        '415':
          $ref: '#/components/responses/http.415.UnsupportedMediaType'
        '429':
          $ref: '#/components/responses/http.429.TooManyRequests'
        '500':
          $ref: '#/components/responses/http.500.InternalServerError'
        '502':
          $ref: '#/components/responses/http.502.BadGateway'
        '503':
          $ref: '#/components/responses/http.503.ServiceUnavailable'
      x-permission: davinci:delete:flowVersions
      tags:
      - DaVinci Admin Flow Versions
  /environments/{environmentID}/flows/{flowID}/versions/{versionID}/alias:
    put:
      operationId: replaceAliasByFlowIdAndVersionId
      parameters:
      - $ref: '#/components/parameters/com.pingidentity.path.environments.environmentID'
      - $ref: '#/components/parameters/com.pingidentity.path.environments.flows.flowID'
      - $ref: '#/components/parameters/com.pingidentity.path.environments.flows.versions.versionID'
      - $ref: '#/components/parameters/com.pingidentity.header.ExternalSessionID'
      - $ref: '#/components/parameters/com.pingidentity.header.ExternalTransactionID'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/com.pingidentity.pingone.davinci.flowversions.data.FlowVersionAlias'
        required: true
      responses:
        '200':
          description: Successful Operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/com.pingidentity.pingone.davinci.flowversions.response.FlowVersionAliasResponse'
        '400':
          $ref: '#/components/responses/http.400.BadRequest'
        '401':
          $ref: '#/components/responses/http.401.Unauthorized'
        '403':
          $ref: '#/components/responses/http.403.Forbidden.P14C63085'
        '404':
          $ref: '#/components/responses/http.404.NotFound'
        '415':
          $ref: '#/components/responses/http.415.UnsupportedMediaType'
        '429':
          $ref: '#/components/responses/http.429.TooManyRequests'
        '500':
          $ref: '#/components/responses/http.500.InternalServerError'
        '502':
          $ref: '#/components/responses/http.502.BadGateway'
        '503':
          $ref: '#/components/responses/http.503.ServiceUnavailable'
      x-permission: davinci:update:flowVersions
      tags:
      - DaVinci Admin Flow Versions
  /environments/{environmentID}/flows/{flowID}/versions/{versionID}/details:
    get:
      operationId: getDetailsByFlowIdAndVersionId
      parameters:
      - name: expand
        in: query
        required: false
        schema:
          type: string
      - $ref: '#/components/parameters/com.pingidentity.path.environments.environmentID'
      - $ref: '#/components/parameters/com.pingidentity.path.environments.flows.flowID'
      - $ref: '#/components/parameters/com.pingidentity.path.environments.flows.versions.versionID'
      - $ref: '#/components/parameters/com.pingidentity.header.ExternalSessionID'
      - $ref: '#/components/parameters/com.pingidentity.header.ExternalTransactionID'
      responses:
        '200':
          description: Successful Operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/com.pingidentity.pingone.davinci.flowversions.response.FlowVersionDetailResponse'
        '400':
          $ref: '#/components/responses/http.400.BadRequest'
        '401':
          $ref: '#/components/responses/http.401.Unauthorized'
        '403':
          $ref: '#/components/responses/http.403.Forbidden.P14C63085'
        '404':
          $ref: '#/components/responses/http.404.NotFound'
        '415':
          $ref: '#/components/responses/http.415.UnsupportedMediaType'
        '429':
          $ref: '#/components/responses/http.429.TooManyRequests'
        '500':
          $ref: '#/components/responses/http.500.InternalServerError'
        '502':
          $ref: '#/components/responses/http.502.BadGateway'
        '503':
          $ref: '#/components/responses/http.503.ServiceUnavailable'
      x-permission: davinci:read:flowVersions
      tags:
      - DaVinci Admin Flow Versions
components:
  schemas:
    com.pingidentity.ApiErrorResponse.400:
      $schema: http://json-schema.org/draft/2020-12/schema#
      type: object
      properties:
        id:
          type: string
          format: uuid
          minLength: 1
          title: Bad Request Error Id
        code:
          type: string
          enum:
          - INVALID_DATA
          - INVALID_REQUEST
          - REQUEST_FAILED
          minLength: 1
          title: Bad Request Error Code
        message:
          type: string
          minLength: 1
          title: Bad Request Error Message
        details:
          type: array
          items:
            type: object
            properties:
              code:
                type: string
                enum:
                - ACCOUNT_NOT_USABLE
                - CONSTRAINT_VIOLATION
                - EMPTY_VALUE
                - INVALID_FILTER
                - INVALID_OTP
                - INVALID_PARAMETER
                - INVALID_VALUE
                - MFA_AUTH_METHODS_CONFLICT
                - NO_PASSWORD
                - OUT_OF_RANGE
                - REQUIRED_VALUE
                - SIZE_LIMIT_EXCEEDED
                - UNIQUENESS_VIOLATION
                minLength: 1
                title: Bad Request Error Detail Code
              message:
                type: string
                minLength: 1
                title: Bad Request Error Detail Message
              innerError:
                type: object
                properties:
                  allowedPattern:
                    type: string
                    title: Bad Request Error Detail Inner Error Allowed Pattern
                  allowedValues:
                    type: array
                    items:
                      type: string
                      title: Bad Request Error Detail Inner Error Allowed Value
                    title: Bad Request Error Detail Inner Error Allowed Values
                  claim:
                    type: string
                    title: Bad Request Error Detail Inner Error Claim
                  existingId:
                    type: string
                    format: uuid
                    title: Bad Request Error Detail Inner Error Existing Id
                  maximumValue:
                    type: number
                    title: Bad Request Error Detail Inner Error Maximum Value
                  quotaLimit:
                    type: number
                    title: Bad Request Error Detail Inner Error Quota Limit
                  quotaResetTime:
                    type: string
                    format: date-time
                    title: Bad Request Error Detail Inner Error Quota Reset Time
                  rangeMaximumValue:
                    type: number
                    title: Bad Request Error Detail Inner Error Range Maximum Value
                  rangeMinimumValue:
                    type: number
                    title: Bad Request Error Detail Inner Error Range Minimum Value
                  supportedAttributes:
                    type: array
                    items:
                      type: string
                      title: Bad Request Error Detail Inner Error Supported Attribute
                    title: Bad Request Error Detail Inner Error Supported Attributes
                  supportedOperators:
                    type: array
                    items:
                      type: string
                      title: Bad Request Error Detail Inner Error Supported Operator
                    title: Bad Request Error Detail Inner Error Supported Operators
                additionalProperties: true
                title: Bad Request Error Detail Inner Error
              target:
                type: string
                title: Bad Request Error Detail Target
            required:
            - code
            - message
            title: Bad Request Error Detail
          title: Bad Request Error Details
      required:
      - id
      - code
      - message
      title: Bad Request Error
    com.pingidentity.pingone.davinci.flowversions.data.FlowVersionAlias:
      type: object
      additionalProperties: true
      properties:
        alias:
          pattern: ^(?=\S)[\p{L}\p{M}\p{N}\p{So}/.'_ -]*(?!.*((<)|(\$\{)))
          maxLength: 256
          type: string
          minLength: 1
          title: DaVinci Flow Version Alias Request Alias
      required:
      - alias
      title: DaVinci Flow Version Alias Request
    com.pingidentity.pingone.davinci.flowversions.response.FlowVersionAliasResponse:
      type: object
      properties:
        _links:
          type: object
          properties:
            environment:
              $ref: '#/components/schemas/com.pingidentity.api.response.Link'
            self:
              $ref: '#/components/schemas/com.pingidentity.api.response.Link'
            flowVersion:
              $ref: '#/components/schemas/com.pingidentity.api.response.Link'
          required:
          - environment
          - self
          - flowVersion
          additionalProperties:
            $ref: '#/components/schemas/com.pingidentity.api.response.Link'
          title: DaVinci Flow Version Alias Response _links
        alias:
          type: string
          minLength: 1
          title: DaVinci Flow Version Alias Response Alias
      required:
      - _links
      - alias
      title: DaVinci Flow Version Alias Response
    com.pingidentity.ApiErrorResponse.415:
      $schema: http://json-schema.org/draft/2020-12/schema#
      type: object
      properties:
        id:
          type: string
          format: uuid
          minLength: 1
          title: Unsupported Media Type Error Id
        code:
          type: string
          enum:
          - INVALID_REQUEST
          minLength: 1
          title: Unsupported Media Type Error Code
        message:
          type: string
          minLength: 1
          title: Unsupported Media Type Error Message
        details:
          type: array
          items:
            type: object
            properties:
              code:
                type: string
                minLength: 1
                title: Unsupported Media Type Error Detail Code
              message:
                type: string
                minLength: 1
                title: Unsupported Media Type Error Detail Message
              innerError:
                type: object
                additionalProperties: true
                title: Unsupported Media Type Error Detail Inner Error
              target:
                type: string
                title: Unsupported Media Type Error Detail Target
            required:
            - code
            - message
            title: Unsupported Media Type Error Detail
          title: Unsupported Media Type Error Details
      required:
      - id
      - code
      - message
      title: Unsupported Media Type Error
    com.pingidentity.ApiErrorResponse.403:
      $schema: http://json-schema.org/draft/2020-12/schema#
      type: object
      properties:
        code:
          type: string
          enum:
          - ACCESS_FAILED
          minLength: 1
          title: Forbidden Error Code
        message:
          type: string
          minLength: 1
          title: Forbidden Error Message
        details:
          type: array
          items:
            type: object
            properties:
              code:
                type: string
                enum:
                - INSUFFICIENT_PERMISSIONS
                - LICENSE_EXCEEDED
                minLength: 1
                title: Forbidden Error Detail Code
              message:
                type: string
                minLength: 1
                title: Forbidden Error Detail Message
              innerError:
                type: object
                properties:
                  quotaLimit:
                    type: number
                    title: Forbidden Error Detail Inner Error Quota Limit
                additionalProperties: true
                title: Forbidden Error Detail Inner Error
              target:
                type: string
                title: Forbidden Error Detail Target
            required:
            - code
            - message
            title: Forbidden Error Detail
          title: Forbidden Error Details
        id:
          type: string
          format: uuid
          title: Forbidden Error Id
      required:
      - code
      - message
      title: Forbidden Error
    com.pingidentity.pingone.davinci.flows.response.fragment.Trigger:
      type: object
      properties:
        type:
          type: string
          enum:
          - AUTHENTICATION
          - SCHEDULE
          minLength: 1
          title: DaVinci Flow Trigger Response Type
        configuration:
          type: object
          properties:
            mfa:
              type: object
              properties:
                enabled:
                  type: boolean
                  title: DaVinci Flow Trigger Response Configuration MFA Enabled
                time:
                  type: number
                  title: DaVinci Flow Trigger Response Configuration MFA Time
                timeFormat:
                  type: string
                  minLength: 1
                  title: DaVinci Flow Trigger Response Configuration MFA Time Format
              required:
              - enabled
              - time
              - timeFormat
              title: DaVinci Flow Trigger Response Configuration MFA
            pwd:
              type: object
              properties:
                enabled:
                  type: boolean
                  title: DaVinci Flow Trigger Response Configuration Password Enabled
                time:
                  type: number
                  title: DaVinci Flow Trigger Response Configuration Password Time
                timeFormat:
                  type: string
                  minLength: 1
                  title: DaVinci Flow Trigger Response Configuration Password Time Format
              required:
              - enabled
              - time
              - timeFormat
              title: DaVinci Flow Trigger Response Configuration Password
          required:
          - mfa
          - pwd
          title: DaVinci Flow Trigger Response Configuration
      required:
      - type
      title: DaVinci Flow Trigger Response
    com.pingidentity.pingone.davinci.flows.response.fragment.InputSchema:
      type: array
      items:
        type: object
        properties:
          preferredControlType:
            type: string
            minLength: 1
            title: DaVinci Flow Input Schema Response Item Preferred Control Type
          preferredDataType:
            type: string
            enum:
            - array
            - boolean
            - number
            - object
            - string
            minLength: 1
            title: DaVinci Flow Input Schema Response Item Preferred Data Type
          propertyName:
            type: string
            minLength: 1
            title: DaVinci Flow Input Schema Response Item Property Name
          description:
            type: string
            title: DaVinci Flow Input Schema Response Item Description
          isExpanded:
            type: boolean
            title: DaVinci Flow Input Schema Response Item Is Expanded
          required:
            type: boolean
            title: DaVinci Flow Input Schema Response Item Required
        required:
        - preferredControlType
        - preferredDataType
        - propertyName
        title: DaVinci Flow Input Schema Response Item
      title: DaVinci Flow Input Schema Response
    com.pingidentity.pingone.davinci.flows.response.fragment.OutputSchema:
      type: object
      properties:
        output:
          type: object
          properties:
            properties:
              type: object
              properties: {}
              additionalProperties: true
              title: DaVinci Flow Output Schema Response Output Properties
            type:
              type: string
              enum:
              - object
              minLength: 1
              title: DaVinci Flow Output Schema Response Output Type
            additionalProperties:
              type: boolean
              title: DaVinci Flow Output Schema Response Output Additional Properties
          required:
          - properties
          - type
          title: DaVinci Flow Output Schema Response Output
      required:
      - output
      title: DaVinci Flow Output Schema Response
    com.pingidentity.pingone.davinci.flowversions.response.FlowVersionsResponse:
      type: object
      properties:
        _embedded:
          type: object
          properties:
            versions:
              type: array
              items:
                type: object
                $ref: '#/components/schemas/com.pingidentity.pingone.davinci.flowversions.response.FlowVersionResponse'
              title: DaVinci Flow Version Collection Response _embedded Versions
          required:
          - versions
          title: DaVinci Flow Version Collection Response _embedded
        _links:
          type: object
          properties:
            environment:
              $ref: '#/components/schemas/com.pingidentity.api.response.Link'
            self:
              $ref: '#/components/schemas/com.pingidentity.api.response.Link'
          required:
          - environment
          - self
          additionalProperties:
            $ref: '#/components/schemas/com.pingidentity.api.response.Link'
          title: DaVinci Flow Version Collection Response _links
      required:
      - _embedded
      - _links
      title: DaVinci Flow Version Collection Response
    com.pingidentity.pingone.davinci.flowversions.response.FlowVersionResponse:
      type: object
      properties:
        _links:
          type: object
          properties:
            environment:
              $ref: '#/components/schemas/com.pingidentity.api.response.Link'
            self:
              $ref: '#/components/schemas/com.pingidentity.api.response.Link'
            details:
              $ref: '#/components/schemas/com.pingidentity.api.response.Link'
            flow.export:
              $ref: '#/components/schemas/com.pingidentity.api.response.Link'
            flow.revert:
              $ref: '#/components/schemas/com.pingidentity.api.response.Link'
          required:
          - environment
          - self
          - details
          - flow.export
          - flow.revert
          additionalProperties:
            $ref: '#/components/schemas/com.pingidentity.api.response.Link'
          title: DaVinci Flow Version Response _links
        environment:
          type: object
          properties:
            id:
              type: string
              minLength: 1
              title: DaVinci Flow Version Response Environment Id
          required:
          - id
          title: DaVinci Flow Version Response Environment
        flow:
          type: object
          properties:
            id:
              type: string
              minLength: 1
              title: DaVinci Flow Version Response Flow Id
            name:
              type: string
              minLength: 1
              title: DaVinci Flow Version Response Flow Name
          required:
          - id
          - name
          title: DaVinci Flow Version Response Flow
        version:
          type: number
          title: DaVinci Flow Version Response Version
        alias:
          type: string
          title: DaVinci Flow Version Response Alias
        clonedFrom:
          type: number
          title: DaVinci Flow Version Response Cloned From
        createdAt:
          type: string
          format: date-time
          title: DaVinci Flow Version Response Created At
        deployedAt:
          type: string
          format: date-time
          title: DaVinci Flow Version Response Deployed At
        updatedAt:
          type: string
          format: date-time
          title: DaVinci Flow Version Response Updated At
      required:
      - _links
      - environment
      - flow
      - version
      title: DaVinci Flow Version Response
    com.pingidentity.api.response.Link:
      type: object
      properties:
        href:
          type: string
          format: uri
          minLength: 1
          title: JSON HAL Link Href
        name:
          type: string
          title: JSON HAL Link Name
        profile:
          type: string
          format: uri
          title: JSON HAL Link Profile
        title:
          type: string
          format: uri
          title: JSON HAL Link Title
        type:
          type: string
          title: JSON HAL Link Type
      required:
      - href
      readOnly: true
      title: JSON HAL Link
    com.pingidentity.pingone.davinci.flows.response.fragment.Settings:
      type: object
      additionalProperties: true
      properties:
        csp:
          type: string
          title: DaVinci Flow Settings Response Csp
        css:
          type: string
          title: DaVinci Flow Settings Response Css
        cssLinks:
          type: array
          items:
            type: string
            title: DaVinci Flow Settings Response Css Link
          title: DaVinci Flow Settings Response Css Links
        customErrorScreenBrandLogoUrl:
          type: string
          title: DaVinci Flow Settings Response Custom Error Screen Brand Logo Url
        customErrorShowFooter:
          oneOf:
          - type: boolean
            title: DaVinci Flow Settings Response Custom Error Show Footer Choice 1
          - type: string
            enum:
            - 'false'
            - 'true'
            title: DaVinci Flow Settings Response Custom Error Show Footer Choice 2
          title: DaVinci Flow Settings Response Custom Error Show Footer
        customFaviconLink:
          type: string
          title: DaVinci Flow Settings Response Custom Favicon Link
        customLogoURLSelection:
          type: integer
          title: DaVinci Flow Settings Response Custom Logo URL Selection
        customTitle:
          type: string
          title: DaVinci Flow Settings Response Custom Title
        defaultErrorScreenBrandLogo:
          oneOf:
          - type: boolean
            title: DaVinci Flow Settings Response Default Error Screen Brand Logo Choice 1
          - type: string
            enum:
            - 'false'
            - 'true'
            title: DaVinci Flow Settings Response Default Error Screen Brand Logo Choice 2
          title: DaVinci Flow Settings Response Default Error Screen Brand Logo
        flowHttpTimeoutInSeconds:
          type: integer
          title: DaVinci Flow Settings Response Flow Http Timeout In Seconds
        flowTimeoutInSeconds:
          type: number
          title: DaVinci Flow Settings Response Flow Timeout In Seconds
        intermediateLoadingScreenCSS:
          oneOf:
          - type: string
            title: DaVinci Flow Settings Response Intermediate Loading Screen CSS Choice 1
          - type: object
            title: DaVinci Flow Settings Response Intermediate Loading Screen CSS Choice 2
          title: DaVinci Flow Settings Response Intermediate Loading Screen CSS
        intermediateLoadingScreenHTML:
          oneOf:
          - type: string
            title: DaVinci Flow Settings Response Intermediate Loading Screen HTML Choice 1
          - type: object
            title: DaVinci Flow Settings Response Intermediate Loading Screen HTML Choice 2
          title: DaVinci Flow Settings Response Intermediate Loading Screen HTML
        jsCustomFlowPlayer:
          type: string
          title: DaVinci Flow Settings Response Js Custom Flow Player
        jsLinks:
          type: array
          items:
            type: object
            additionalProperties: false
            properties:
              crossorigin:
                type: string
                minLength: 1
                title: DaVinci Flow Settings Response Js Link Crossorigin
              defer:
                oneOf:
                - type: boolean
                  title: DaVinci Flow Settings Response Js Link Defer Choice 1
                - type: string
                  enum:
                  - 'false'
                  - 'true'
                  title: DaVinci Flow Settings Response Js Link Defer Choice 2
                title: DaVinci Flow Settings Response Js Link Defer
              integrity:
                type: string
                minLength: 1
                title: DaVinci Flow Settings Response Js Link Integrity
              label:
                type: string
                minLength: 1
                title: DaVinci Flow Settings Response Js Link Label
              referrerpolicy:
                type: string
                minLength: 1
                title: DaVinci Flow Settings Response Js Link Referrerpolicy
              type:
                type: string
                minLength: 1
                title: DaVinci Flow Settings Response Js Link Type
              value:
                type: string
                minLength: 1
                title: DaVinci Flow Settings Response Js Link Value
            required:
            - crossorigin
            - defer
            - integrity
            - label
            - referrerpolicy
            - type
            - value
            title: DaVinci Flow Settings Response Js Link
          title: DaVinci Flow Settings Response Js Links
        logLevel:
          type: integer
          minimum: 1
          maximum: 4
          title: DaVinci Flow Settings Response Log Level
        requireAuthenticationToInitiate:
          oneOf:
          - type: boolean
            title: DaVinci Flow Settings Response Require Authentication To Initiate Choice 1
          - type: string
            enum:
            - 'false'
            - 'true'
            title: DaVinci Flow Settings Response Require Authentication To Initiate Choice 2
          title: DaVinci Flow Settings Response Require Authentication To Initiate
        scrubSensitiveInfo:
          oneOf:
          - type: boolean
            title: DaVinci Flow Settings Response Scrub Sensitive Info Choice 1
          - type: string
            enum:
            - 'false'
            - 'true'
            title: DaVinci Flow Settings Response Scrub Sensitive Info Choice 2
          title: DaVinci Flow Settings Response Scrub Sensitive Info
        sensitiveInfoFields:
          type: array
          items:
            type: string
            title: DaVinci Flow Settings Response Sensitive Info Field
          title: DaVinci Flow Settings Response Sensitive Info Fields
        useCSP:
          oneOf:
          - type: boolean
            title: DaVinci Flow Settings Response Use CSP Choice 1
          - type: string
            enum:
            - 'false'
            - 'true'
            title: DaVinci Flow Settings Response Use CSP Choice 2
          title: DaVinci Flow Settings Response Use CSP
        useCustomCSS:
          oneOf:
          - type: boolean
            title: DaVinci Flow Settings Response Use Custom CSS Choice 1
          - type: string
            enum:
            - 'false'
            - 'true'
            title: DaVinci Flow Settings Response Use Custom CSS Choice 2
      

# --- truncated at 32 KB (83 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/ping-identity/refs/heads/main/openapi/ping-identity-davinci-admin-flow-versions-api-openapi.yml