Outline · Schema

DocumentDataAttribute

Knowledge BaseWikiDocumentsCollaborationOpen SourceTeam

Properties

Name Type Description
dataAttributeId string Unique identifier for the associated data attribute.
value object The value of the data attribute for this document.
updatedAt string The date and time that this object attribute was last changed
View JSON Schema on GitHub

JSON Schema

documentdataattribute.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DocumentDataAttribute",
  "type": "object",
  "properties": {
    "dataAttributeId": {
      "type": "string",
      "description": "Unique identifier for the associated data attribute.",
      "format": "uuid"
    },
    "value": {
      "description": "The value of the data attribute for this document.",
      "example": "In Progress",
      "oneOf": [
        {
          "type": "string"
        },
        {
          "type": "boolean"
        },
        {
          "type": "number"
        }
      ]
    },
    "updatedAt": {
      "type": "string",
      "description": "The date and time that this object attribute was last changed",
      "readOnly": true,
      "format": "date-time"
    }
  }
}