{
"$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
}