Outline · Schema

DataAttribute

Knowledge BaseWikiDocumentsCollaborationOpen SourceTeam

Properties

Name Type Description
id string Unique identifier for the object.
name string The name of this data attribute.
description string A description of the data attribute.
dataType object
options object
pinned boolean Whether this data attribute is pinned to the top of documents.
createdAt string The date and time that this object was created
updatedAt string The date and time that this object was last changed
deletedAt string The date and time that this object was deleted
View JSON Schema on GitHub

JSON Schema

dataattribute.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DataAttribute",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the object.",
      "readOnly": true,
      "format": "uuid"
    },
    "name": {
      "type": "string",
      "description": "The name of this data attribute.",
      "example": "Status"
    },
    "description": {
      "type": "string",
      "description": "A description of the data attribute.",
      "example": "The current status of the document."
    },
    "dataType": {
      "$ref": "#/components/schemas/DataAttributeDataType"
    },
    "options": {
      "$ref": "#/components/schemas/DataAttributeOptions"
    },
    "pinned": {
      "type": "boolean",
      "description": "Whether this data attribute is pinned to the top of documents.",
      "default": false
    },
    "createdAt": {
      "type": "string",
      "description": "The date and time that this object was created",
      "readOnly": true,
      "format": "date-time"
    },
    "updatedAt": {
      "type": "string",
      "description": "The date and time that this object was last changed",
      "readOnly": true,
      "format": "date-time"
    },
    "deletedAt": {
      "type": "string",
      "nullable": true,
      "description": "The date and time that this object was deleted",
      "readOnly": true,
      "format": "date-time"
    }
  }
}