Dow Jones RiskCenter Third Party Platform API

Manage third parties, their properties and their monitored entities inside Dow Jones RiskCenter — the third-party risk-management product in the Risk & Compliance family. This is the only write surface Dow Jones publishes a contract for: it creates, updates and deletes third parties and monitored entities and uploads files. Two beta versions are published side by side, 0.1 (19 operations) and 0.2 (22 operations, adding file upload/download and field-list lookups). It runs on its own host with its own token endpoint at auth-thirdparty.riskcenter.dowjones.com, not on api.dowjones.com.

Operations 22

GET /business-units Retrieves all business units #
GET /third-parties/properties/fields Retrieves all fields (optional filter) #
GET /third-parties/properties/fields/{id}/list Get a List relationship for a Field #
GET /files/{fileId} Downloads a file.
POST /files Uploads a file.
GET /groups Retrieves all groups (optional paging) #
GET /lists Retrieves all lists #
GET /lists/{id} Retrieves a list by id #
GET /third-parties/processes Retrieves all processes (optional paging) #
POST /third-parties Creates a new third party #
GET /third-parties Retrieves all third-parties (optional filter) #
PATCH /third-parties/{id} Updates an existing third party #
DELETE /third-parties/{id} Deletes a third party #
GET /third-parties/{id} Retrieves a third party by id #
GET /third-parties/{thirdpartyid}/properties Retrieves all properties for a third party (optional filter) #
PUT /third-parties/{thirdpartyid}/properties/{id} Updates a property #
PUT /third-parties/{thirdpartyid}/properties/batch-update Updates multiple properties #
GET /third-parties/{thirdpartyid}/monitored-entities Retrieves all monitored entities for the given third party (optional paging) #
POST /third-parties/{thirdpartyid}/monitored-entities Adds a new monitored entity #
DELETE /third-parties/{thirdpartyid}/monitored-entities/{id} Removes a monitored entity #
GET /third-parties/monitored-entities/id-types Retrieves all monitored entity id types #
GET /third-parties/monitored-entities/types Retrieves all monitored entity types #

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/riskcenter-third-party-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

dow-jones-developer-platform-riskcenter-third-party-api-0-2-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: RiskCenter Third Party Platform API 0.2
  version: v0.2-beta
servers:
- url: https://api-thirdparty.riskcenter.dowjones.com/
paths:
  /business-units:
    get:
      tags:
      - BusinessUnit
      summary: Retrieves all business units
      operationId: GetBusinessUnits
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseBusinessUnit'
        '401':
          description: Unauthorized
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
      security:
      - oauth2: []
  /third-parties/properties/fields:
    get:
      tags:
      - Field
      summary: Retrieves all fields (optional filter)
      operationId: GetFields
      parameters:
      - name: filter[name]
        in: query
        schema:
          type: string
      - name: filter[is_key_risk]
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseField'
        '401':
          description: Unauthorized
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
      security:
      - oauth2: []
  /third-parties/properties/fields/{id}/list:
    get:
      tags:
      - Field
      summary: Get a List relationship for a Field
      operationId: GetFieldList
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: language
        in: query
        schema:
          type: string
          default: en-us
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseList'
        '404':
          description: Not Found
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '401':
          description: Unauthorized
      security:
      - oauth2: []
  /files/{fileId}:
    get:
      tags:
      - File
      summary: Downloads a file.
      parameters:
      - name: fileId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
        '404':
          description: Not Found
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '401':
          description: Unauthorized
      security:
      - oauth2: []
  /files:
    post:
      tags:
      - File
      summary: Uploads a file.
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                files:
                  type: array
                  items:
                    type: string
                    format: binary
            encoding:
              files:
                style: form
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseFile'
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '401':
          description: Unauthorized
      security:
      - oauth2: []
  /groups:
    get:
      tags:
      - Group
      summary: Retrieves all groups (optional paging)
      operationId: GetGroups
      parameters:
      - name: page[limit]
        in: query
        schema:
          type: integer
          format: int32
      - name: page[context]
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseGroup'
        '401':
          description: Unauthorized
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
      security:
      - oauth2: []
  /lists:
    get:
      tags:
      - List
      summary: Retrieves all lists
      operationId: GetLists
      parameters:
      - name: page[limit]
        in: query
        schema:
          type: integer
          format: int32
      - name: page[context]
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseLists'
        '401':
          description: Unauthorized
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
      security:
      - oauth2: []
  /lists/{id}:
    get:
      tags:
      - List
      summary: Retrieves a list by id
      operationId: GetList
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: language
        in: query
        schema:
          type: string
          default: en-us
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseList'
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '401':
          description: Unauthorized
        '404':
          description: Not Found
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
      security:
      - oauth2: []
  /third-parties/processes:
    get:
      tags:
      - Process
      summary: Retrieves all processes (optional paging)
      operationId: GetProcesses
      parameters:
      - name: page[limit]
        in: query
        schema:
          type: integer
          format: int32
      - name: page[context]
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseProcess'
        '401':
          description: Unauthorized
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
      security:
      - oauth2: []
  /third-parties:
    post:
      tags:
      - ThirdParty
      summary: Creates a new third party
      operationId: PostThirdParty
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/RequestThirdParty'
          application/json:
            schema:
              $ref: '#/components/schemas/RequestThirdParty'
          text/json:
            schema:
              $ref: '#/components/schemas/RequestThirdParty'
          application/*+json:
            schema:
              $ref: '#/components/schemas/RequestThirdParty'
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseThirdParty'
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '401':
          description: Unauthorized
      security:
      - oauth2: []
    get:
      tags:
      - ThirdParty
      summary: Retrieves all third-parties (optional filter)
      operationId: GetThirdParties
      parameters:
      - name: filter[name]
        in: query
        description: Case insensitive name filter.
        schema:
          type: string
      - name: filter[business_unit]
        in: query
        description: Business unit id filter
        schema:
          type: string
      - name: filter[is_active]
        in: query
        description: Active status filter
        schema:
          type: boolean
      - name: filter[tags]
        in: query
        description: Case sensitive tag filter.
        schema:
          type: string
      - name: filter[risk_level]
        in: query
        description: Case sensitive risk level filter.
        schema:
          type: string
      - name: filter[risk_status]
        in: query
        description: Case sensitive risk status filter
        schema:
          type: string
      - name: filter[internal_reference]
        in: query
        description: Case insensitive internal reference filter.
        schema:
          type: string
      - name: page[limit]
        in: query
        description: ''
        schema:
          type: integer
          format: int32
      - name: page[context]
        in: query
        description: ''
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseThirdParties'
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '401':
          description: Unauthorized
      security:
      - oauth2: []
  /third-parties/{id}:
    patch:
      tags:
      - ThirdParty
      summary: Updates an existing third party
      operationId: PatchThirdParty
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/RequestThirdPartyPatch'
          application/json:
            schema:
              $ref: '#/components/schemas/RequestThirdPartyPatch'
          text/json:
            schema:
              $ref: '#/components/schemas/RequestThirdPartyPatch'
          application/*+json:
            schema:
              $ref: '#/components/schemas/RequestThirdPartyPatch'
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseThirdParty'
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '404':
          description: Not Found
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '401':
          description: Unauthorized
      security:
      - oauth2: []
    delete:
      tags:
      - ThirdParty
      summary: Deletes a third party
      operationId: DeleteThirdParty
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '404':
          description: Not Found
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '401':
          description: Unauthorized
      security:
      - oauth2: []
    get:
      tags:
      - ThirdParty
      summary: Retrieves a third party by id
      operationId: GetThirdParty
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseThirdParty'
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '404':
          description: Not Found
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '401':
          description: Unauthorized
      security:
      - oauth2: []
  /third-parties/{thirdpartyid}/properties:
    get:
      tags:
      - ThirdPartyProperties
      summary: Retrieves all properties for a third party (optional filter)
      operationId: GetThirdPartyProperties
      parameters:
      - name: thirdpartyid
        in: path
        required: true
        schema:
          type: string
      - name: filter[field_name]
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseProperties'
        '401':
          description: Unauthorized
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '404':
          description: Not Found
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
      security:
      - oauth2: []
  /third-parties/{thirdpartyid}/properties/{id}:
    put:
      tags:
      - ThirdPartyProperties
      summary: Updates a property
      operationId: PutThirdPartyProperties
      parameters:
      - name: thirdpartyid
        in: path
        required: true
        schema:
          type: string
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/RequestPropertyUpdate'
          application/json:
            schema:
              $ref: '#/components/schemas/RequestPropertyUpdate'
          text/json:
            schema:
              $ref: '#/components/schemas/RequestPropertyUpdate'
          application/*+json:
            schema:
              $ref: '#/components/schemas/RequestPropertyUpdate'
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseProperty'
        '401':
          description: Unauthorized
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '409':
          description: Conflict
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
      security:
      - oauth2: []
  /third-parties/{thirdpartyid}/properties/batch-update:
    put:
      tags:
      - ThirdPartyProperties
      summary: Updates multiple properties
      operationId: PutBatchThirdPartyProperties
      parameters:
      - name: thirdpartyid
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/RequestPropertyBatchUpdate'
          application/json:
            schema:
              $ref: '#/components/schemas/RequestPropertyBatchUpdate'
          text/json:
            schema:
              $ref: '#/components/schemas/RequestPropertyBatchUpdate'
          application/*+json:
            schema:
              $ref: '#/components/schemas/RequestPropertyBatchUpdate'
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseProperties'
        '401':
          description: Unauthorized
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '409':
          description: Conflict
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
      security:
      - oauth2: []
  /third-parties/{thirdpartyid}/monitored-entities:
    get:
      tags:
      - ThirdPartyScreening
      summary: Retrieves all monitored entities for the given third party (optional paging)
      operationId: GetMonitoredEntities
      parameters:
      - name: thirdpartyid
        in: path
        required: true
        schema:
          type: string
      - name: page[limit]
        in: query
        schema:
          type: integer
          format: int32
      - name: page[context]
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseThirdPartyScreeningEntities'
        '401':
          description: Unauthorized
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '404':
          description: Not Found
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
      security:
      - oauth2: []
    post:
      tags:
      - ThirdPartyScreening
      summary: Adds a new monitored entity
      operationId: PostMonitoredEntities
      parameters:
      - name: thirdpartyid
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/RequestThirdPartyScreeningCreate'
          application/json:
            schema:
              $ref: '#/components/schemas/RequestThirdPartyScreeningCreate'
          text/json:
            schema:
              $ref: '#/components/schemas/RequestThirdPartyScreeningCreate'
          application/*+json:
            schema:
              $ref: '#/components/schemas/RequestThirdPartyScreeningCreate'
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseThirdPartyScreeningEntity'
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '401':
          description: Unauthorized
      security:
      - oauth2: []
  /third-parties/{thirdpartyid}/monitored-entities/{id}:
    delete:
      tags:
      - ThirdPartyScreening
      summary: Removes a monitored entity
      operationId: DeleteMonitoredEntities
      parameters:
      - name: thirdpartyid
        in: path
        required: true
        schema:
          type: string
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
        '401':
          description: Unauthorized
        '404':
          description: Not Found
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
      security:
      - oauth2: []
  /third-parties/monitored-entities/id-types:
    get:
      tags:
      - ThirdPartyScreeningTypes
      summary: Retrieves all monitored entity id types
      operationId: GetMonitoredEntitiesIdTypes
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseScreeningIdType'
        '401':
          description: Unauthorized
      security:
      - oauth2: []
  /third-parties/monitored-entities/types:
    get:
      tags:
      - ThirdPartyScreeningTypes
      summary: Retrieves all monitored entity types
      operationId: GetMonitoredEntitiesEntityTypes
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseScreeningType'
        '401':
          description: Unauthorized
      security:
      - oauth2: []
components:
  schemas:
    BusinessUnit:
      type: object
      properties:
        name:
          type: string
          description: ''
        parent_id:
          type: string
          description: ''
          nullable: true
      additionalProperties: false
      description: ''
    Column:
      type: object
      properties:
        title:
          type: string
          description: ''
          nullable: true
        schema:
          type: string
          description: ''
          nullable: true
        list:
          $ref: '#/components/schemas/FieldList'
        regex:
          type: string
          description: ''
          nullable: true
        input_mask:
          type: string
          description: ''
          nullable: true
        multi_line:
          type: boolean
          description: ''
        required:
          type: boolean
          description: ''
      additionalProperties: false
      description: ''
    ErrorModelV2:
      type: object
      properties:
        status:
          type: integer
          description: ''
          format: int32
        code:
          type: integer
          description: ''
          format: int32
        title:
          type: string
          description: ''
          nullable: true
        detail:
          type: string
          description: ''
          nullable: true
      additionalProperties: false
      description: Updated Error model
    ErrorResponseModelV2:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/ErrorModelV2'
          description: ''
          nullable: true
      additionalProperties: false
      description: Updated Error Response Model
    Field:
      type: object
      properties:
        table_definition:
          $ref: '#/components/schemas/TableDefinition'
        name:
          type: string
          description: ''
        category:
          type: string
          description: ''
        description:
          type: string
          description: ''
          nullable: true
        is_key_risk:
          type: boolean
          description: ''
        is_red_flag:
          type: boolean
          description: ''
        is_scored:
          type: boolean
          description: ''
        is_read_only:
          type: boolean
          description: ''
        schema:
          type: string
          description: ''
        list:
          $ref: '#/components/schemas/FieldList'
        regex:
          type: string
          description: ''
          nullable: true
        input_mask:
          type: string
          description: ''
          nullable: true
      additionalProperties: false
      description: ''
    FieldList:
      type: object
      properties:
        id:
          type: string
          description: ''
          nullable: true
        value_column:
          type: integer
          description: ''
          format: int32
          nullable: true
        items:
          type: array
          items:
            $ref: '#/components/schemas/FieldListItem'
          description: Adhoc list items.
          nullable: true
      additionalProperties: false
      description: ''
    FieldListItem:
      type: object
      properties:
        value:
          description: ''
        text:
          type: string
          description: ''
      additionalProperties: false
      description: ''
    FileItem:
      type: object
      properties:
        file_id:
          type: string
          description: ''
          nullable: true
        file_name:
          type: string
          description: ''
          nullable: true
      additionalProperties: false
      description: ''
    Group:
      type: object
      properties:
        name:
          type: string
          description: ''
      additionalProperties: false
      description: ''
    IdType:
      type: object
      properties:
        name:
          type: string
          description: ''
      additionalProperties: false
      description: ''
    List:
      type: object
      properties:
        rows:
          type: array
          items:
            $ref: '#/components/schemas/ListRow'
          description: ''
        columns:
          type: array
          items:
            type: string
          description: ''
      additionalProperties: false
      description: ''
    ListName:
      type: object
      properties:
        name:
          type: string
          description: ''
      additionalProperties: false
      description: ''
    ListRow:
      type: object
      properties:
        id:
          type: string
          description: ''
        data:
          type: array
          items: {}
          description: ''
      additionalProperties: false
      description: ''
    PagingMeta:
      type: object
      properties:
        context:
          type: string
          description: ''
      additionalProperties: false
      description: ''
    Process:
      type: object
      properties:
        name:
          type: string
          description: ''
      additionalProperties: false
      description: ''
    RelationshipData:
      type: object
      properties:
        type:
          type: string
          description: ''
        id:
          type: string
          description: ''
      additionalProperties: false
      description: ''
    RelationshipLinks:
      type: object
      properties:
        self:
          type: string
          description: ''
        related:
          type: string
          description: ''
      additionalProperties: false
      description: ''
    ReponseRelationship:
      type: object
      properties:
        links:
          $ref: '#/components/schemas/RelationshipLinks'
        data:
          $ref: '#/components/schemas/RelationshipData'
      additionalProperties: false
      description: ''
    RequestDataPropertyBatchUpdate:
      required:
      - attributes
      - id
      type: object
      properties:
        id:
          type: string
          description: ''
        attributes:
          $ref: '#/components/schemas/ThirdPartyPropertyUpdate'
        type:
          type: string
          description: ''
          nullable: true
      additionalProperties: false
      description: ''
    RequestDataPropertyUpdate:
      required:
      - attributes
      - id
      type: object
      properties:
        id:
          type: string
          description: ''
        attributes:
          $ref: '#/components/schemas/ThirdPartyPropertyUpdate'
        type:
          type: string
          description: ''
          nullable: true
      additionalProperties: false
      description: ''
    RequestDataThirdParty:
      required:
      - attributes
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/ThirdParty'
        type:
          type: string
          description: ''
          nullable: true
      additionalProperties: false
      description: ''
    RequestDataThirdPartyPatch:
      required:
      - attributes
      - id
      type: object
      properties:
        id:
          type: string
          description: ''
        attributes:
          $ref: '#/components/schemas/ThirdPartyPatch'
        type:
          type: string
          description: ''
          nullable: true
      additionalProperties: false
      description: ''
    RequestDataThirdPartyScreeningCreate:
      required:
      - attributes
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/ThirdPartyScreeningEntityCreate'
        type:
          type: string
          description: ''
          nullable: true
      additionalProperties: false
      description: ''
    RequestPropertyBatchUpdate:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/RequestDataPropertyBatchUpdate'
          description: ''
          nullable: true
      additionalProperties: false
      description: ''
    RequestPropertyUpdate:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/RequestDataPropertyUpdate'
      additionalProperties: false
      description: ''
    RequestThirdParty:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/RequestDataThirdParty'
      additionalProperties: false
   

# --- truncated at 32 KB (47 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/dow-jones-developer-platform/refs/heads/main/openapi/dow-jones-developer-platform-riskcenter-third-party-api-0-2-openapi.yml