projectScopes

put/projectScopes/{id}

Path parameters

idinteger required

id of the project scope

Request body

idinteger
assessmentIdinteger
describeAiEnvironmentstring
isNewAiTechnologyboolean
usesPersonalDataboolean
projectScopeDocumentsstring
technologyTypestring
hasOngoingMonitoringboolean
unintendedOutcomesstring
technologyDocumentationstring

Example request

{
  "id": 1,
  "assessmentId": 1,
  "describeAiEnvironment": "This project involves the development of a new AI-powered virtual assistant.",
  "isNewAiTechnology": true,
  "usesPersonalData": true,
  "projectScopeDocuments": "project-scope-v1.pdf",
  "technologyType": "Natural Language Processing",
  "hasOngoingMonitoring": true,
  "unintendedOutcomes": "Potential bias in the assistant's responses.",
  "technologyDocumentation": "technology-documentation.docx"
}

Response

project scope

messagestring

Example response

{
  "message": "accepted",
  "data": {
    "id": 1,
    "assessmentId": 1,
    "describeAiEnvironment": "This project involves the development of a new AI-powered virtual assistant.",
    "isNewAiTechnology": true,
    "usesPersonalData": true,
    "projectScopeDocuments": "project-scope-v1.pdf",
    "technologyType": "Natural Language Processing",
    "hasOngoingMonitoring": true,
    "unintendedOutcomes": "Potential bias in the assistant's responses.",
    "technologyDocumentation": "technology-documentation.docx"
  }
}

Changes