projects

put/projects/{id}

Path parameters

idinteger required

id of the project

Request body

idnumber
project_titlestring
ownerinteger
{"stackTrail":"paths:/projects/{id}:put:requestBody:content:application/json:schema:properties:users","oasType":"schema","type":"unknown","example":null}
start_datestring date-time
ai_risk_classification'high risk' | 'limited risk' | 'minimal risk'
type_of_high_risk_role'deployer' | 'provider' | 'distributor' | 'importer' | 'product manufacturer' | 'authorized representative'
goalstring
last_updatedstring date-time
last_updated_byinteger

Example request

{
  "id": 1,
  "project_title": "AI Compliance Checker",
  "owner": 1,
  "start_date": "2023-01-15T00:00:00.000Z",
  "ai_risk_classification": "high risk",
  "type_of_high_risk_role": "deployer",
  "goal": "To ensure compliance with AI governance standards",
  "last_updated": "2024-10-30T00:00:00.000Z",
  "last_updated_by": 1
}

Response

project

messagestring

Example response

{
  "message": "accepted",
  "data": {
    "id": 1,
    "project_title": "AI Compliance Checker",
    "owner": 1,
    "members": [
      "1"
    ],
    "start_date": "2023-01-15T00:00:00.000Z",
    "ai_risk_classification": "high risk",
    "type_of_high_risk_role": "deployer",
    "goal": "To ensure compliance with AI governance standards",
    "last_updated": "2024-10-30T00:00:00.000Z",
    "last_updated_by": 1
  }
}

Changes