Ping Identity DaVinci Admin Applications API

Operations for managing DaVinci applications

OpenAPI Specification

ping-identity-davinci-admin-applications-api-openapi.yml Raw ↑
openapi: 3.1.1
info:
  title: PingOne Platform Configuration Management DaVinci Admin Applications 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 Applications
  description: Operations for managing DaVinci applications
paths:
  /environments/{environmentID}/davinciApplications:
    get:
      operationId: getDavinciApplications
      parameters:
      - $ref: '#/components/parameters/com.pingidentity.path.environments.environmentID'
      - $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.applications.response.ApplicationsResponse'
        '400':
          $ref: '#/components/responses/http.400.BadRequest'
        '401':
          $ref: '#/components/responses/http.401.Unauthorized'
        '403':
          $ref: '#/components/responses/http.403.Forbidden.P14C63085.DOCS8830'
        '404':
          $ref: '#/components/responses/http.404.NotFound.DOCS8830'
        '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:applications
      tags:
      - DaVinci Admin Applications
    post:
      operationId: createDavinciApplication
      parameters:
      - $ref: '#/components/parameters/com.pingidentity.path.environments.environmentID'
      - $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.applications.data.CreateApplication'
        required: true
      responses:
        '201':
          description: Successfully created the resource.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/com.pingidentity.pingone.davinci.applications.response.ApplicationResponse'
        '400':
          $ref: '#/components/responses/http.400.BadRequest'
        '401':
          $ref: '#/components/responses/http.401.Unauthorized'
        '403':
          $ref: '#/components/responses/http.403.Forbidden.P14C63085.DOCS8830'
        '404':
          $ref: '#/components/responses/http.404.NotFound.DOCS8830'
        '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:create:applications
      tags:
      - DaVinci Admin Applications
  /environments/{environmentID}/davinciApplications/{davinciApplicationID}:
    get:
      operationId: getDavinciApplicationById
      parameters:
      - $ref: '#/components/parameters/com.pingidentity.path.environments.environmentID'
      - $ref: '#/components/parameters/com.pingidentity.path.environments.davinciApplications.davinciApplicationID'
      - $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.applications.response.ApplicationResponse'
        '400':
          $ref: '#/components/responses/http.400.BadRequest'
        '401':
          $ref: '#/components/responses/http.401.Unauthorized'
        '403':
          $ref: '#/components/responses/http.403.Forbidden.P14C63085.DOCS8830'
        '404':
          $ref: '#/components/responses/http.404.NotFound.DOCS8830'
        '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:applications
      tags:
      - DaVinci Admin Applications
    put:
      operationId: replaceDavinciApplicationById
      parameters:
      - $ref: '#/components/parameters/com.pingidentity.path.environments.environmentID'
      - $ref: '#/components/parameters/com.pingidentity.path.environments.davinciApplications.davinciApplicationID'
      - $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.applications.data.UpdateApplication'
        required: true
      responses:
        '200':
          description: Successful Operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/com.pingidentity.pingone.davinci.applications.response.ApplicationResponse'
        '400':
          $ref: '#/components/responses/http.400.BadRequest'
        '401':
          $ref: '#/components/responses/http.401.Unauthorized'
        '403':
          $ref: '#/components/responses/http.403.Forbidden.P14C63085.DOCS8830'
        '404':
          $ref: '#/components/responses/http.404.NotFound.DOCS8830'
        '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:applications
      tags:
      - DaVinci Admin Applications
    delete:
      operationId: deleteDavinciApplicationById
      parameters:
      - $ref: '#/components/parameters/com.pingidentity.path.environments.environmentID'
      - $ref: '#/components/parameters/com.pingidentity.path.environments.davinciApplications.davinciApplicationID'
      - $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.DOCS8830'
        '404':
          $ref: '#/components/responses/http.404.NotFound.DOCS8830'
        '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:applications
      tags:
      - DaVinci Admin Applications
  /environments/{environmentID}/davinciApplications/{davinciApplicationID}/key:
    post:
      operationId: rotateKeyByDavinciApplicationId
      parameters:
      - $ref: '#/components/parameters/com.pingidentity.path.environments.environmentID'
      - $ref: '#/components/parameters/com.pingidentity.path.environments.davinciApplications.davinciApplicationID'
      - $ref: '#/components/parameters/com.pingidentity.header.ExternalSessionID'
      - $ref: '#/components/parameters/com.pingidentity.header.ExternalTransactionID'
      requestBody:
        content:
          application/vnd.pingidentity.davinciApplication.rotateKey+json:
            schema:
              $ref: '#/components/schemas/com.pingidentity.pingone.davinci.applications.data.RotateApplicationKey'
        required: true
      responses:
        '200':
          description: Successful Operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/com.pingidentity.pingone.davinci.applications.response.ApplicationResponse'
        '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:applications
      x-pingidentity-operation-action: rotate
      tags:
      - DaVinci Admin Applications
  /environments/{environmentID}/davinciApplications/{davinciApplicationID}/secret:
    post:
      operationId: rotateSecretByDavinciApplicationId
      parameters:
      - $ref: '#/components/parameters/com.pingidentity.path.environments.environmentID'
      - $ref: '#/components/parameters/com.pingidentity.path.environments.davinciApplications.davinciApplicationID'
      - $ref: '#/components/parameters/com.pingidentity.header.ExternalSessionID'
      - $ref: '#/components/parameters/com.pingidentity.header.ExternalTransactionID'
      requestBody:
        content:
          application/vnd.pingidentity.davinciApplication.rotateSecret+json:
            schema:
              $ref: '#/components/schemas/com.pingidentity.pingone.davinci.applications.data.RotateApplicationSecret'
        required: true
      responses:
        '200':
          description: Successful Operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/com.pingidentity.pingone.davinci.applications.response.ApplicationResponse'
        '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:applications
      x-pingidentity-operation-action: rotate
      tags:
      - DaVinci Admin Applications
components:
  schemas:
    com.pingidentity.pingone.davinci.applications.response.ApplicationsResponse:
      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'
          required:
          - environment
          - self
          additionalProperties:
            $ref: '#/components/schemas/com.pingidentity.api.response.Link'
          title: DaVinci Application Collection Response _links
        _embedded:
          type: object
          properties:
            davinciApplications:
              type: array
              items:
                type: object
                $ref: '#/components/schemas/com.pingidentity.pingone.davinci.applications.response.ApplicationResponse'
              title: DaVinci Application Collection Response _embedded Davinci Applications
          required:
          - davinciApplications
          title: DaVinci Application Collection Response _embedded
      required:
      - _links
      - _embedded
      title: DaVinci Application Collection Response
    com.pingidentity.ApiErrorResponse:
      type: object
      properties:
        code:
          type: string
          title: General Error Code
        details:
          type: array
          items:
            $ref: '#/components/schemas/com.pingidentity.ErrorDetail'
          title: General Error Details
        id:
          type: string
          title: General Error Id
        message:
          type: string
          title: General Error Message
      title: General Error
    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.ErrorDetail:
      type: object
      properties:
        code:
          type: string
          title: General Error Detail Code
        innerError:
          type: object
          additionalProperties:
            type: object
            title: General Error Detail Inner Error Additional Properties
          title: General Error Detail Inner Error
        message:
          type: string
          title: General Error Detail Message
        target:
          type: string
          title: General Error Detail Target
      title: General Error Detail
    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.ApiErrorResponse.404:
      $schema: http://json-schema.org/draft/2020-12/schema#
      type: object
      properties:
        id:
          type: string
          format: uuid
          minLength: 1
          title: Not Found Error Id
        code:
          type: string
          enum:
          - NOT_FOUND
          minLength: 1
          title: Not Found Error Code
        message:
          type: string
          minLength: 1
          title: Not Found Error Message
        details:
          type: array
          items:
            type: object
            properties:
              code:
                type: string
                minLength: 1
                title: Not Found Error Detail Code
              message:
                type: string
                minLength: 1
                title: Not Found Error Detail Message
              innerError:
                type: object
                additionalProperties: true
                title: Not Found Error Detail Inner Error
              target:
                type: string
                title: Not Found Error Detail Target
            required:
            - code
            - message
            title: Not Found Error Detail
          title: Not Found Error Details
      required:
      - id
      - code
      - message
      title: Not Found Error
    com.pingidentity.pingone.davinci.applications.data.RotateApplicationKey:
      type: object
      additionalProperties: false
      properties: {}
      title: DaVinci Application Rotate Key Request
    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.applications.data.UpdateApplication:
      type: object
      additionalProperties: true
      properties:
        name:
          pattern: ^(?=\S)[\p{L}\p{M}\p{N}\p{So}/.'_ -]*(?!.*((<)|(\$\{)))
          maxLength: 256
          type: string
          minLength: 1
          title: DaVinci Application Replace Request Name
        apiKey:
          type: object
          additionalProperties: true
          properties:
            enabled:
              type: boolean
              title: DaVinci Application Replace Request Api Key Enabled
          title: DaVinci Application Replace Request Api Key
        oauth:
          type: object
          additionalProperties: true
          properties:
            enforceSignedRequestOpenid:
              type: boolean
              title: DaVinci Application Replace Request OAuth Enforce Signed Request Openid
            grantTypes:
              type: array
              items:
                type: string
                enum:
                - authorizationCode
                - clientCredentials
                - implicit
                title: DaVinci Application Replace Request OAuth Grant Type
              title: DaVinci Application Replace Request OAuth Grant Types
            logoutUris:
              type: array
              items:
                type: string
                title: DaVinci Application Replace Request OAuth Logout Uri
              title: DaVinci Application Replace Request OAuth Logout Uris
            redirectUris:
              type: array
              items:
                type: string
                title: DaVinci Application Replace Request OAuth Redirect Uri
              title: DaVinci Application Replace Request OAuth Redirect Uris
            scopes:
              type: array
              items:
                type: string
                enum:
                - flow_analytics
                - offline_access
                - openid
                - profile
                title: DaVinci Application Replace Request OAuth Scope
              title: DaVinci Application Replace Request OAuth Scopes
            spJwksOpenid:
              type: string
              title: DaVinci Application Replace Request OAuth Sp Jwks Openid
            spjwksUrl:
              type: string
              title: DaVinci Application Replace Request OAuth Spjwks Url
          title: DaVinci Application Replace Request OAuth
      required:
      - name
      title: DaVinci Application Replace Request
    com.pingidentity.pingone.davinci.applications.response.ApplicationResponse:
      type: object
      properties:
        _links:
          type: object
          properties:
            self:
              $ref: '#/components/schemas/com.pingidentity.api.response.Link'
            environment:
              $ref: '#/components/schemas/com.pingidentity.api.response.Link'
            flowPolicies:
              $ref: '#/components/schemas/com.pingidentity.api.response.Link'
            davinciApplication.rotateKey:
              $ref: '#/components/schemas/com.pingidentity.api.response.Link'
            davinciApplication.rotateSecret:
              $ref: '#/components/schemas/com.pingidentity.api.response.Link'
          required:
          - self
          - environment
          - flowPolicies
          - davinciApplication.rotateKey
          - davinciApplication.rotateSecret
          additionalProperties:
            $ref: '#/components/schemas/com.pingidentity.api.response.Link'
          title: DaVinci Application Response _links
        apiKey:
          type: object
          properties:
            enabled:
              type: boolean
              default: true
              title: DaVinci Application Response Api Key Enabled
            value:
              type: string
              format: password
              minLength: 1
              title: DaVinci Application Response Api Key Value
          required:
          - enabled
          - value
          title: DaVinci Application Response Api Key
        environment:
          $ref: '#/components/schemas/com.pingidentity.api.Relationship.PingOne.RO'
        id:
          type: string
          minLength: 1
          title: DaVinci Application Response Id
        name:
          type: string
          minLength: 1
          title: DaVinci Application Response Name
        oauth:
          type: object
          properties:
            clientSecret:
              type: string
              format: password
              minLength: 1
              title: DaVinci Application Response OAuth Client Secret
            enforceSignedRequestOpenid:
              type: boolean
              title: DaVinci Application Response OAuth Enforce Signed Request Openid
            grantTypes:
              type: array
              items:
                enum:
                - authorizationCode
                - clientCredentials
                - implicit
                type: string
                title: DaVinci Application Response OAuth Grant Type
              default:
              - authorizationCode
              title: DaVinci Application Response OAuth Grant Types
            logoutUris:
              type: array
              items:
                type: string
                title: DaVinci Application Response OAuth Logout Uri
              title: DaVinci Application Response OAuth Logout Uris
            redirectUris:
              type: array
              items:
                type: string
                title: DaVinci Application Response OAuth Redirect Uri
              title: DaVinci Application Response OAuth Redirect Uris
            scopes:
              type: array
              items:
                enum:
                - flow_analytics
                - offline_access
                - openid
                - profile
                type: string
                title: DaVinci Application Response OAuth Scope
              default:
              - openid
              - profile
              title: DaVinci Application Response OAuth Scopes
            spJwksOpenid:
              type: string
              title: DaVinci Application Response OAuth Sp Jwks Openid
            spjwksUrl:
              type: string
              title: DaVinci Application Response OAuth Spjwks Url
          required:
          - clientSecret
          title: DaVinci Application Response OAuth
        createdAt:
          type: string
          format: date-time
          title: DaVinci Application Response Created At
        updatedAt:
          type: string
          format: date-time
          title: DaVinci Application Response Updated At
      required:
      - _links
      - apiKey
      - environment
      - id
      - name
      - oauth
      title: DaVinci Application Response
    com.pingidentity.api.Relationship.PingOne.RO:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
          minLength: 1
          title: Resource Relationship Read-Only Id
      required:
      - id
      title: Resource Relationship Read-Only
    com.pingidentity.pingone.davinci.applications.data.RotateApplicationSecret:
      type: object
      additionalProperties: false
      properties: {}
      title: DaVinci Application Rotate Secret Request
    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.500:
      $schema: http://json-schema.org/draft/2020-12/schema#
      type: object
      properties:
        id:
          type: string
          format: uuid
          minLength: 1
          title: Internal Server Error Id
        code:
          type: string
          enum:
          - UNEXPECTED_ERROR
          minLength: 1
          title: Internal Server Error Code
        message:
          type: string
          minLength: 1
          title: Internal Server Error Message
        details:
          type: array
          items:
            type: object
            properties:
              code:
                type: string
                minLength: 1
                title: Internal Server Error Detail Code
              message:
                type: string
                minLength: 1
                title: Internal Server Error Detail Message
              innerError:
                type: object
                additionalProperties: true
                title: Internal Server Error D

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