Flowable Process Definitions API

The Process Definitions API from Flowable — 13 operation(s) for process definitions.

Operations 16

GET /repository/process-definitions List of process definitions #
GET /repository/process-definitions/{processDefinitionId} Get a process definition #
PUT /repository/process-definitions/{processDefinitionId} Execute actions for a process definition #
POST /repository/process-definitions/{processDefinitionId}/batch-migrate Batch migrate all instances of process definition #
GET /repository/process-definitions/{processDefinitionId}/decision-tables List decision tables for a process-definition #
GET /repository/process-definitions/{processDefinitionId}/decisions List decisions for a process-definition #
GET /repository/process-definitions/{processDefinitionId}/form-definitions List form definitions for a process-definition #
GET /repository/process-definitions/{processDefinitionId}/image Get a process definition image #
POST /repository/process-definitions/{processDefinitionId}/migrate Migrate all instances of process definition #
GET /repository/process-definitions/{processDefinitionId}/model Get a process definition BPMN model #
GET /repository/process-definitions/{processDefinitionId}/resourcedata Get a process definition resource content #
GET /repository/process-definitions/{processDefinitionId}/start-form Get a process definition start form #

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/flowable-process-definitions-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

flowable-process-definitions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: '# flowable / flowəb(ə)l /


    - a compact and highly efficient workflow and Business Process Management (BPM) platform for developers, system admins and business users.

    - a lightning fast, tried and tested BPMN 2 process engine written in Java. It is Apache 2.0 licensed open source, with a committed community.

    - can run embedded in a Java application, or as a service on a server, a cluster, and in the cloud. It integrates perfectly with Spring. With a rich Java and REST API, it is the ideal engine for orchestrating human or system activities.'
  version: v1
  title: Flowable REST Access Tokens Process Definitions API
  contact:
    name: Flowable
    url: http://www.flowable.org/
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
servers:
- url: /flowable-rest/service
tags:
- name: Process Definitions
paths:
  /repository/process-definitions:
    get:
      tags:
      - Process Definitions
      summary: List of process definitions
      description: ''
      operationId: listProcessDefinitions
      parameters:
      - name: version
        in: query
        description: Only return process definitions with the given version.
        required: false
        schema:
          type: integer
      - name: name
        in: query
        description: Only return process definitions with the given name.
        required: false
        schema:
          type: string
      - name: nameLike
        in: query
        description: Only return process definitions with a name like the given name.
        required: false
        schema:
          type: string
      - name: nameLikeIgnoreCase
        in: query
        description: Only return process definitions with a name like the given name ignoring case.
        required: false
        schema:
          type: string
      - name: key
        in: query
        description: Only return process definitions with the given key.
        required: false
        schema:
          type: string
      - name: keyLike
        in: query
        description: Only return process definitions with a name like the given key.
        required: false
        schema:
          type: string
      - name: resourceName
        in: query
        description: Only return process definitions with the given resource name.
        required: false
        schema:
          type: string
      - name: resourceNameLike
        in: query
        description: Only return process definitions with a name like the given resource name.
        required: false
        schema:
          type: string
      - name: category
        in: query
        description: Only return process definitions with the given category.
        required: false
        schema:
          type: string
      - name: categoryLike
        in: query
        description: Only return process definitions with a category like the given name.
        required: false
        schema:
          type: string
      - name: categoryNotEquals
        in: query
        description: Only return process definitions which do not have the given category.
        required: false
        schema:
          type: string
      - name: deploymentId
        in: query
        description: Only return process definitions which are part of a deployment with the given deployment id.
        required: false
        schema:
          type: string
      - name: parentDeploymentId
        in: query
        description: Only return process definitions which are part of a deployment with the given parent deployment id.
        required: false
        schema:
          type: string
      - name: startableByUser
        in: query
        description: Only return process definitions which are part of a deployment with the given id.
        required: false
        schema:
          type: string
      - name: latest
        in: query
        description: Only return the latest process definition versions. Can only be used together with key and keyLike parameters, using any other parameter will result in a 400-response.
        required: false
        schema:
          type: boolean
      - name: suspended
        in: query
        description: If true, only returns process definitions which are suspended. If false, only active process definitions (which are not suspended) are returned.
        required: false
        schema:
          type: boolean
      - name: sort
        in: query
        description: Property to sort on, to be used together with the order.
        required: false
        schema:
          type: string
          enum:
          - name
          - id
          - key
          - category
          - deploymentId
          - version
      - name: order
        in: query
        description: The sort order, either 'asc' or 'desc'. Defaults to 'asc'.
        required: false
        schema:
          type: string
      - name: start
        in: query
        description: Index of the first row to fetch. Defaults to 0.
        required: false
        schema:
          type: integer
      - name: size
        in: query
        description: Number of rows to fetch, starting from start. Defaults to 10.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: Indicates request was successful and the process-definitions are returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponseProcessDefinitionResponse'
        '400':
          description: Indicates a parameter was passed in the wrong format or that latest is used with other parameters other than key and keyLike. The status-message contains additional information.
      security:
      - basicAuth: []
  /repository/process-definitions/{processDefinitionId}:
    get:
      tags:
      - Process Definitions
      summary: Get a process definition
      description: ''
      operationId: getProcessDefinition
      parameters:
      - name: processDefinitionId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates request was successful and the process-definitions are returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProcessDefinitionResponse'
        '404':
          description: Indicates the requested process definition was not found.
      security:
      - basicAuth: []
    put:
      tags:
      - Process Definitions
      summary: Execute actions for a process definition
      description: Execute actions for a process definition (Update category, Suspend or Activate)
      operationId: executeProcessDefinitionAction
      parameters:
      - name: processDefinitionId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProcessDefinitionActionRequest'
        required: true
      responses:
        '200':
          description: Indicates action has been executed for the specified process. (category altered, activate or suspend)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProcessDefinitionResponse'
        '400':
          description: Indicates no category was defined in the request body.
        '404':
          description: Indicates the requested process definition was not found.
        '409':
          description: Indicates the requested process definition is already suspended or active.
      security:
      - basicAuth: []
  /repository/process-definitions/{processDefinitionId}/batch-migrate:
    post:
      tags:
      - Process Definitions
      summary: Batch migrate all instances of process definition
      description: ''
      operationId: batchMigrateInstancesOfProcessDefinition
      parameters:
      - name: processDefinitionId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        $ref: '#/components/requestBodies/batchMigrateInstancesOfProcessDefinitionBody'
      responses:
        '200':
          description: Indicates process instances were found and batch migration was started.
        '404':
          description: Indicates the requested process definition was not found.
      security:
      - basicAuth: []
  /repository/process-definitions/{processDefinitionId}/decision-tables:
    get:
      tags:
      - Process Definitions
      summary: List decision tables for a process-definition
      description: ''
      operationId: listProcessDefinitionDecisionTables
      parameters:
      - name: processDefinitionId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the process definition was found and the decision tables are returned.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DecisionResponse'
        '404':
          description: Indicates the requested process definition was not found.
      security:
      - basicAuth: []
      deprecated: true
  /repository/process-definitions/{processDefinitionId}/decisions:
    get:
      tags:
      - Process Definitions
      summary: List decisions for a process-definition
      description: ''
      operationId: listProcessDefinitionDecisions
      parameters:
      - name: processDefinitionId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the process definition was found and the decisions are returned.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DecisionResponse'
        '404':
          description: Indicates the requested process definition was not found.
      security:
      - basicAuth: []
  /repository/process-definitions/{processDefinitionId}/form-definitions:
    get:
      tags:
      - Process Definitions
      summary: List form definitions for a process-definition
      description: ''
      operationId: listProcessDefinitionFormDefinitions
      parameters:
      - name: processDefinitionId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the process definition was found and the form definitions are returned.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FormDefinitionResponse'
        '404':
          description: Indicates the requested process definition was not found.
      security:
      - basicAuth: []
  /repository/process-definitions/{processDefinitionId}/identitylinks:
    get:
      tags:
      - Process Definitions
      summary: List candidate starters for a process-definition
      description: ''
      operationId: listProcessDefinitionIdentityLinks
      parameters:
      - name: processDefinitionId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the process definition was found and the requested identity links are returned.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RestIdentityLink'
        '404':
          description: Indicates the requested process definition was not found.
      security:
      - basicAuth: []
    post:
      tags:
      - Process Definitions
      summary: Add a candidate starter to a process definition
      description: It is possible to add either a user or a group.
      operationId: createIdentityLink
      parameters:
      - name: processDefinitionId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        $ref: '#/components/requestBodies/RestIdentityLink'
      responses:
        '201':
          description: Indicates the process definition was found and the identity link was created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RestIdentityLink'
        '400':
          description: Indicates the body does not contain the correct information.
        '404':
          description: Indicates the requested process definition was not found.
      security:
      - basicAuth: []
  /repository/process-definitions/{processDefinitionId}/identitylinks/{family}/{identityId}:
    get:
      tags:
      - Process Definitions
      summary: Get a candidate starter from a process definition
      description: ''
      operationId: getIdentityLink
      parameters:
      - name: processDefinitionId
        in: path
        required: true
        schema:
          type: string
      - name: family
        in: path
        required: true
        schema:
          type: string
      - name: identityId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the process definition was found and the identity link was returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RestIdentityLink'
        '404':
          description: Indicates the requested process definition was not found or the process definition does not have an identity-link that matches the url.
      security:
      - basicAuth: []
    delete:
      tags:
      - Process Definitions
      summary: Delete a candidate starter from a process definition
      description: ''
      operationId: deleteIdentityLink
      parameters:
      - name: processDefinitionId
        in: path
        required: true
        schema:
          type: string
      - name: family
        in: path
        required: true
        schema:
          type: string
      - name: identityId
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Indicates the process definition was found and the identity link was removed. The response body is intentionally empty.
        '404':
          description: Indicates the requested process definition was not found or the process definition does not have an identity-link that matches the url.
      security:
      - basicAuth: []
  /repository/process-definitions/{processDefinitionId}/image:
    get:
      tags:
      - Process Definitions
      summary: Get a process definition image
      description: ''
      operationId: getModelResource
      parameters:
      - name: processDefinitionId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates request was successful and the process-definitions are returned
          content:
            image/png:
              schema:
                type: array
                items:
                  type: string
                  format: byte
        '404':
          description: Indicates the requested process definition was not found.
      security:
      - basicAuth: []
  /repository/process-definitions/{processDefinitionId}/migrate:
    post:
      tags:
      - Process Definitions
      summary: Migrate all instances of process definition
      description: ''
      operationId: migrateInstancesOfProcessDefinition
      parameters:
      - name: processDefinitionId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        $ref: '#/components/requestBodies/batchMigrateInstancesOfProcessDefinitionBody'
      responses:
        '200':
          description: Indicates process instances were found and migration was executed.
        '404':
          description: Indicates the requested process definition was not found.
      security:
      - basicAuth: []
  /repository/process-definitions/{processDefinitionId}/model:
    get:
      tags:
      - Process Definitions
      summary: Get a process definition BPMN model
      description: ''
      operationId: getBpmnModelResource
      parameters:
      - name: processDefinitionId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the process definition was found and the model is returned. The response contains the full process definition model.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BpmnModel'
        '404':
          description: Indicates the requested process definition was not found.
      security:
      - basicAuth: []
  /repository/process-definitions/{processDefinitionId}/resourcedata:
    get:
      tags:
      - Process Definitions
      summary: Get a process definition resource content
      description: ''
      operationId: getProcessDefinitionResource
      parameters:
      - name: processDefinitionId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates both process definition and resource have been found and the resource data has been returned.
          content:
            '*/*':
              schema:
                type: array
                items:
                  type: string
                  format: byte
        '404':
          description: Indicates the requested process definition was not found or there is no resource with the given id present in the process definition. The status-description contains additional information.
      security:
      - basicAuth: []
  /repository/process-definitions/{processDefinitionId}/start-form:
    get:
      tags:
      - Process Definitions
      summary: Get a process definition start form
      description: ''
      operationId: getProcessDefinitionStartForm
      parameters:
      - name: processDefinitionId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates request was successful and the process definition form is returned
          content:
            application/json:
              schema:
                type: string
        '404':
          description: Indicates the requested process definition was not found.
      security:
      - basicAuth: []
components:
  schemas:
    Artifact:
      type: object
      properties:
        id:
          type: string
        xmlRowNumber:
          type: integer
          format: int32
        xmlColumnNumber:
          type: integer
          format: int32
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionAttribute'
    Interface:
      type: object
      properties:
        id:
          type: string
        xmlRowNumber:
          type: integer
          format: int32
        xmlColumnNumber:
          type: integer
          format: int32
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionAttribute'
        name:
          type: string
        implementationRef:
          type: string
        operations:
          type: array
          items:
            $ref: '#/components/schemas/Operation'
    DataSpec:
      type: object
      properties:
        id:
          type: string
        xmlRowNumber:
          type: integer
          format: int32
        xmlColumnNumber:
          type: integer
          format: int32
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionAttribute'
        name:
          type: string
        itemSubjectRef:
          type: string
        collection:
          type: boolean
    BpmnModel:
      type: object
      properties:
        definitionsAttributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionAttribute'
        processes:
          type: array
          items:
            $ref: '#/components/schemas/Process'
        locationMap:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/GraphicInfo'
        labelLocationMap:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/GraphicInfo'
        flowLocationMap:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/GraphicInfo'
        edgeMap:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/BpmnDiEdge'
        signals:
          type: array
          items:
            $ref: '#/components/schemas/Signal'
        pools:
          type: array
          items:
            $ref: '#/components/schemas/Pool'
        imports:
          type: array
          items:
            $ref: '#/components/schemas/Import'
        interfaces:
          type: array
          items:
            $ref: '#/components/schemas/Interface'
        globalArtifacts:
          type: array
          items:
            $ref: '#/components/schemas/Artifact'
        resources:
          type: array
          items:
            $ref: '#/components/schemas/Resource'
        targetNamespace:
          type: string
        sourceSystemId:
          type: string
        userTaskFormTypes:
          type: array
          items:
            type: string
        startEventFormTypes:
          type: array
          items:
            type: string
        exporter:
          type: string
        exporterVersion:
          type: string
        mainProcess:
          $ref: '#/components/schemas/Process'
        messages:
          type: array
          items:
            $ref: '#/components/schemas/Message'
        errors:
          type: object
          additionalProperties:
            type: string
        escalations:
          type: array
          items:
            $ref: '#/components/schemas/Escalation'
        dataStores:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/DataStore'
        namespaces:
          type: object
          additionalProperties:
            type: string
        messageFlows:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/MessageFlow'
        itemDefinitions:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/ItemDefinition'
    IOSpecification:
      type: object
      properties:
        id:
          type: string
        xmlRowNumber:
          type: integer
          format: int32
        xmlColumnNumber:
          type: integer
          format: int32
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionAttribute'
        dataInputs:
          type: array
          items:
            $ref: '#/components/schemas/DataSpec'
        dataOutputs:
          type: array
          items:
            $ref: '#/components/schemas/DataSpec'
        dataInputRefs:
          type: array
          items:
            type: string
        dataOutputRefs:
          type: array
          items:
            type: string
    ValuedDataObject:
      type: object
      properties:
        id:
          type: string
        xmlRowNumber:
          type: integer
          format: int32
        xmlColumnNumber:
          type: integer
          format: int32
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionAttribute'
        name:
          type: string
        documentation:
          type: string
        executionListeners:
          type: array
          items:
            $ref: '#/components/schemas/FlowableListener'
        itemSubjectRef:
          $ref: '#/components/schemas/ItemDefinition'
        value:
          type: object
        type:
          type: string
    FlowableListener:
      type: object
      properties:
        id:
          type: string
        xmlRowNumber:
          type: integer
          format: int32
        xmlColumnNumber:
          type: integer
          format: int32
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionAttribute'
        event:
          type: string
        implementationType:
          type: string
        implementation:
          type: string
        fieldExtensions:
          type: array
          items:
            $ref: '#/components/schemas/FieldExtension'
        onTransaction:
          type: string
        customPropertiesResolverImplementationType:
          type: string
        customPropertiesResolverImplementation:
          type: string
        scriptInfo:
          $ref: '#/components/schemas/ScriptInfo'
    ItemDefinition:
      type: object
      properties:
        id:
          type: string
        xmlRowNumber:
          type: integer
          format: int32
        xmlColumnNumber:
          type: integer
          format: int32
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionAttribute'
        structureRef:
          type: string
        itemKind:
          type: string
    ExtensionAttribute:
      type: object
      properties:
        name:
          type: string
        value:
          type: string
        namespacePrefix:
          type: string
        namespace:
          type: string
    Escalation:
      type: object
      properties:
        id:
          type: string
        xmlRowNumber:
          type: integer
          format: int32
        xmlColumnNumber:
          type: integer
          format: int32
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionAttribute'
        name:
          type: string
        escalationCode:
          type: string
    GraphicInfo:
      type: object
      properties:
        x:
          type: number
          format: double
        y:
          type: number
          format: double
        height:
          type: number
          format: double
        width:
          type: number
          format: double
        element:
          $ref: '#/components/schemas/BaseElement'
        expanded:
          type: boolean
        xmlRowNumber:
          type: integer
          format: int32
        xmlColumnNumber:
          type: integer
          format: int32
        rotation:
          type: number
          format: double
    Import:
      type: object
      properties:
        id:
          type: string
        xmlRowNumber:
          type: integer
          format: int32
        xmlColumnNumber:
          type: integer
          format: int32
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionAttribute'
        importType:
          type: string
        location:
          type: string
        namespace:
          type: string
    DecisionResponse:
      type: object
      properties:
        id:
          type: string
        category:
          type: string
        name:
          type: string
        key:
          type: string
        description:
          type: string
        version:
          type: integer
          format: int32
        resourceName:
          type: string
        deploymentId:
          type: string
        tenantId:
          type: string
        url:
          type: string
    BaseElement:
      type: object
      properties:
        id:
          type: string
        xmlRowNumber:
          type: integer
          format: int32
        xmlColumnNumber:
          type: integer
          format: int32
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ExtensionAttribute'
    FormDefinitionResponse:
      type: object
      properties:
        id:
          type: string
        url:
          type: string
        category:
          type: string
        name:
          type: string
        key:
          type: string
        description:
          type: string
        version:
          type: integer
          format: int32
        resourceName:
          type: string
        deploymentId:
          type: string
        tenantId:
          type: string
    ProcessDefinitionResponse:
      type: object
      properties:
        id:
          type: string
          example: oneTaskProcess:1:4
        url:
          type: string
          example: http://localhost:8182/repository/process-definitions/oneTaskProcess%3A1%3A4
        key:
          type: string
          example: oneTaskProcess
        version:
          type: integer
          format: int32
          example: 1
        name:
          type: string
          example: The One Task Process
        description:
          type: string
          example: This is a process for testing purposes
        tenantId:
          type: string
          example: 'null'
        deploymentId:
          type: string
          example: '2'
        deploymentUrl:
          type: string
          example: http://localhost:8081/repository/deployments/2
        resource:
          type: string
          example: http://localhost:8182/repository/deployments/2/resources/testProcess.xml
          description: Contains the actual deployed BPMN 2.0 xml.
        diagramResource:
          type: string
          example: http://localhost:8182/repository/deployments/2/resources/testProcess.png
          description: Contains a graphical representation of the process, null when no diagram is available.
        category:
          type: string
          exa

# --- truncated at 32 KB (46 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/flowable/refs/heads/main/openapi/flowable-process-definitions-api-openapi.yml