Dataiku · Schema

SignOffReview

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
reviewer string Login of the reviewer
outcome string Review outcome
comment string Review comment
reviewedOn integer Review timestamp
View JSON Schema on GitHub

JSON Schema

dataiku-signoffreview-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SignOffReview",
  "title": "SignOffReview",
  "type": "object",
  "properties": {
    "reviewer": {
      "type": "string",
      "description": "Login of the reviewer"
    },
    "outcome": {
      "type": "string",
      "enum": [
        "APPROVED",
        "REJECTED"
      ],
      "description": "Review outcome"
    },
    "comment": {
      "type": "string",
      "description": "Review comment"
    },
    "reviewedOn": {
      "type": "integer",
      "format": "int64",
      "description": "Review timestamp"
    }
  }
}