Intralinks · Schema

Intralinks Custom Field

A custom field definition for an Intralinks workspace, allowing additional metadata to be attached to documents, folders, and groups.

Document ManagementSecure File SharingVirtual Data Room

Properties

Name Type Description
id string Unique identifier of the custom field.
name string Custom field name.
type string Custom field data type.
isRequired boolean Whether the field is mandatory.
options array Available options for SELECT type fields.
View JSON Schema on GitHub

JSON Schema

custom-field.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "custom-field.json",
  "title": "Intralinks Custom Field",
  "description": "A custom field definition for an Intralinks workspace, allowing additional metadata to be attached to documents, folders, and groups.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the custom field."
    },
    "name": {
      "type": "string",
      "description": "Custom field name."
    },
    "type": {
      "type": "string",
      "enum": ["TEXT", "DATE", "SELECT"],
      "description": "Custom field data type."
    },
    "isRequired": {
      "type": "boolean",
      "description": "Whether the field is mandatory."
    },
    "options": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Available options for SELECT type fields."
    }
  },
  "required": ["name", "type"]
}