Dataiku · Schema

SignOffReviewRequest

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
outcome string Review outcome
comment string Review comment
View JSON Schema on GitHub

JSON Schema

dataiku-signoffreviewrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SignOffReviewRequest",
  "title": "SignOffReviewRequest",
  "type": "object",
  "required": [
    "outcome"
  ],
  "properties": {
    "outcome": {
      "type": "string",
      "enum": [
        "APPROVED",
        "REJECTED"
      ],
      "description": "Review outcome"
    },
    "comment": {
      "type": "string",
      "description": "Review comment"
    }
  }
}