Skip to content

Augmented Operations Management API (1.0.0)

Overview

This API provides backend services for the Augmented Decision Making application, focusing on the efficient scheduling and assignment of tasks Operations to a given Resources.

The system models the following key entities:

  • Locations: Representing physical areas
  • Resources: Specific assignable assets within a location.
  • Tasks: Represent individual events, jobs. Tasks include detailed time information (planned, expected, actual) and model uncertainty using statistical parameters (sigma, skew factor, distribution mean/earliest/latest). Tasks also support versioning to track updates.
  • Operations: Represent a complete operation, linking an inbound task to an outbound task. Operations contain relevant metadata.
  • Assignments: Link an Operation to a specific Resource for a given time period.
  • Tags: Can be used to restrict possible assignments as well as indicate preferences or penalties.
  • Rules: Can be used to specify preferences or penalties in conjunction with the tagging mechanism.

Core Functionality

The API enables users and automated systems to:

  1. Manage Data: Perform CRUD operations on Locations, Resources, Tasks, Operations, and Assignments.
  2. Track Operations Times: Handle various time representations and update task details, including imposing delays. Task updates create new versions, preserving history.
  3. Assignments: Assign or reassign operation to resources.
  4. Detect Conflicts: Identify situations where an assigned conflicting (overlapping) with another based on their expected time windows.
  5. Resolve Conflicts: Offer mechanisms to resolve individual scheduling conflicts through AI.
  6. Optimize Globally: Offer global optimization of the schedule using various solvers to minimize conflicts and reassignments while optimizing for rules.
  7. AI Assistance: Interact with an AI agent (via the /agent/ endpoint) using natural language to query the schedule, identify conflicts, request moves, or trigger conflict resolution processes. The agent utilizes specialized tools to interact with the system's state.
  8. Real-time Updates: Delivers real-time notifications about changes to Assignments and Operations via WebSockets to subscribed clients.
  9. Virtual State Management: Allows temporary modifications to the schedule (virtual assignments) for "what-if" scenarios or agent-driven planning before potentially persisting changes.
Download OpenAPI description
Languages
Servers
Acceptance Environment
https://api.acc.adm.wearetransformers.nl

User management (authentication, current user details).

Operations

Managing locations and viewing their associated resources.

Operations

Request

Creates a new location.

Security
tokenAuth
Bodyapplication/jsonrequired
externalIdstring or null
namestringrequired
orderingnumber(double)
planningstring(uuid)required
metadataobject
curl -i -X POST \
  https://api.acc.adm.wearetransformers.nl/v1/locations/ \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "externalId": "string",
    "name": "string",
    "ordering": 0.1,
    "planning": "2d429708-7857-4300-9552-6e473ce0d566",
    "metadata": {}
  }'

Responses

Bodyapplication/json
idstring(uuid)read-onlyrequired
versionIdstring(uuid)read-onlyrequired
workspacestring or null(uuid)read-onlyrequired
externalIdstring or null
namestringrequired
orderingnumber(double)
resourcesArray of objects(Resource)read-onlyrequired
resources[].​idstring(uuid)read-onlyrequired
resources[].​versionIdstring(uuid)read-onlyrequired
resources[].​workspacestring or null(uuid)read-onlyrequired
resources[].​externalIdstring or null
resources[].​namestringrequired
resources[].​orderingnumber(double)
resources[].​adjacentArray of strings or null(uuid)
resources[].​tagsDetailsArray of objects(SimpleTag)read-onlyrequired
resources[].​tagsDetails[].​uuidstring(uuid)read-onlyrequired
resources[].​tagsDetails[].​categorystringrequired
resources[].​tagsDetails[].​valuestringrequired
resources[].​tagsDetails[].​requiredboolean
Default false
resources[].​tagsDetails[].​colorstring or null
resources[].​locationstring(uuid)required
resources[].​parentstring or null(uuid)
resources[].​metadataAviationStandResourceMetadataSchema (object) or AviationStandDemoResourceMetadataSchema (object) or MaritimeBerthResourceMetadataSchema (object)
One of:

Input schema for stands metadata.

planningstring(uuid)required
metadataobject
Response
application/json
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "versionId": "14707576-2549-4848-82ed-f68f8a1b47c7", "workspace": "3f216741-15dd-4e46-b5ac-0077a2640e89", "externalId": "string", "name": "string", "ordering": 0.1, "resources": [ {} ], "planning": "2d429708-7857-4300-9552-6e473ce0d566", "metadata": {} }

Request

Updates an existing location.

Security
tokenAuth
Path
idstring(uuid)required
Bodyapplication/json
externalIdstring or null
namestring
orderingnumber(double)
planningstring(uuid)
metadataobject
curl -i -X PATCH \
  'https://api.acc.adm.wearetransformers.nl/v1/locations/{id}/' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "externalId": "string",
    "name": "string",
    "ordering": 0.1,
    "planning": "2d429708-7857-4300-9552-6e473ce0d566",
    "metadata": {}
  }'

Responses

Bodyapplication/json
idstring(uuid)read-onlyrequired
versionIdstring(uuid)read-onlyrequired
workspacestring or null(uuid)read-onlyrequired
externalIdstring or null
namestringrequired
orderingnumber(double)
resourcesArray of objects(Resource)read-onlyrequired
resources[].​idstring(uuid)read-onlyrequired
resources[].​versionIdstring(uuid)read-onlyrequired
resources[].​workspacestring or null(uuid)read-onlyrequired
resources[].​externalIdstring or null
resources[].​namestringrequired
resources[].​orderingnumber(double)
resources[].​adjacentArray of strings or null(uuid)
resources[].​tagsDetailsArray of objects(SimpleTag)read-onlyrequired
resources[].​tagsDetails[].​uuidstring(uuid)read-onlyrequired
resources[].​tagsDetails[].​categorystringrequired
resources[].​tagsDetails[].​valuestringrequired
resources[].​tagsDetails[].​requiredboolean
Default false
resources[].​tagsDetails[].​colorstring or null
resources[].​locationstring(uuid)required
resources[].​parentstring or null(uuid)
resources[].​metadataAviationStandResourceMetadataSchema (object) or AviationStandDemoResourceMetadataSchema (object) or MaritimeBerthResourceMetadataSchema (object)
One of:

Input schema for stands metadata.

planningstring(uuid)required
metadataobject
Response
application/json
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "versionId": "14707576-2549-4848-82ed-f68f8a1b47c7", "workspace": "3f216741-15dd-4e46-b5ac-0077a2640e89", "externalId": "string", "name": "string", "ordering": 0.1, "resources": [ {} ], "planning": "2d429708-7857-4300-9552-6e473ce0d566", "metadata": {} }

Get all locations and resources for a planing

Request

List a nested result of locations and resources for a planning.

Security
tokenAuth
Path
idstring(uuid)required
curl -i -X GET \
  'https://api.acc.adm.wearetransformers.nl/v1/plannings/{id}/locations/' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Bodyapplication/jsonArray [
idstring(uuid)read-onlyrequired
versionIdstring(uuid)read-onlyrequired
workspacestring or null(uuid)read-onlyrequired
externalIdstring or null
namestringrequired
orderingnumber(double)
resourcesArray of objects(Resource)read-onlyrequired
resources[].​idstring(uuid)read-onlyrequired
resources[].​versionIdstring(uuid)read-onlyrequired
resources[].​workspacestring or null(uuid)read-onlyrequired
resources[].​externalIdstring or null
resources[].​namestringrequired
resources[].​orderingnumber(double)
resources[].​adjacentArray of strings or null(uuid)
resources[].​tagsDetailsArray of objects(SimpleTag)read-onlyrequired
resources[].​tagsDetails[].​uuidstring(uuid)read-onlyrequired
resources[].​tagsDetails[].​categorystringrequired
resources[].​tagsDetails[].​valuestringrequired
resources[].​tagsDetails[].​requiredboolean
Default false
resources[].​tagsDetails[].​colorstring or null
resources[].​locationstring(uuid)required
resources[].​parentstring or null(uuid)
resources[].​metadataAviationStandResourceMetadataSchema (object) or AviationStandDemoResourceMetadataSchema (object) or MaritimeBerthResourceMetadataSchema (object)
One of:

Input schema for stands metadata.

planningstring(uuid)required
metadataobject
]
Response
application/json
[ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "versionId": "14707576-2549-4848-82ed-f68f8a1b47c7", "workspace": "3f216741-15dd-4e46-b5ac-0077a2640e89", "externalId": "string", "name": "string", "ordering": 0.1, "resources": [], "planning": "2d429708-7857-4300-9552-6e473ce0d566", "metadata": {} } ]

Managing resources (CRUD, listing).

Operations

Managing operations. Includes CRUD and listing with time/version filters.

Operations

Updating details (time, uncertainty) of individual tasks within operations.

Operations

Managing the assignment of operations to resources (CRUD, bulk operations, deactivation, listing per operation).

Operations

Resolving specific scheduling conflicts using heuristic search methods (streaming and non-streaming).

Operations

Globally optimizing the schedule using one of the solvers to minimize conflicts and reassignments while optimizing for rules.

Operations

Managing the plannings and organizations you have access to.

Operations

Interacting with the conversational AI assistant for planning and queries.

Operations

Utility endpoints, such as generating schedule visualizations.

Operations

API authentication token management (e.g., obtaining auth tokens).

Our mechanism for indicating constraints, penalties or preferences.

Operations

Can be used together with Tags to specify preferences or penalties.

Operations
Operations
Operations
Operations
Operations
Operations
Operations