Zoho Creator · Schema

Zoho Creator Record

A data record in a Zoho Creator application form or report.

Low-CodeApplication DevelopmentNo-CodeFormsRecordsWorkflowsDatabaseCRUDBusiness Applications

Properties

Name Type Description
ID string Unique identifier for the record within the report or form.
Added_Time string Timestamp when the record was created.
Modified_Time string Timestamp when the record was last modified.
Added_User object User who added the record.
Modified_User object User who last modified the record.
View JSON Schema on GitHub

JSON Schema

zoho-creator-record.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zoho-creator/main/json-schema/zoho-creator-record.json",
  "title": "Zoho Creator Record",
  "description": "A data record in a Zoho Creator application form or report.",
  "type": "object",
  "properties": {
    "ID": {
      "type": "string",
      "description": "Unique identifier for the record within the report or form."
    },
    "Added_Time": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the record was created."
    },
    "Modified_Time": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the record was last modified."
    },
    "Added_User": {
      "type": "object",
      "description": "User who added the record.",
      "properties": {
        "ID": { "type": "string" },
        "display_value": { "type": "string" }
      }
    },
    "Modified_User": {
      "type": "object",
      "description": "User who last modified the record.",
      "properties": {
        "ID": { "type": "string" },
        "display_value": { "type": "string" }
      }
    }
  },
  "additionalProperties": true
}