Restaurant365 · JSON Structure

R365 Api Journal Entry Structure

A general ledger journal entry line submitted to the R365 API. Debits and credits must balance across the entry.

Type: object Properties: 13 Required: 6
RestaurantAccountingInventoryOperationsInvoicesReportingOData

JournalEntry is a JSON Structure definition published by Restaurant365, describing 13 properties, of which 6 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

BatchId userId JENumber Date JEComment JELocation Account Debit Credit DetailLocation PayrollJournalEntry PayrollStartDate PayrollEndDate

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/restaurant365/main/json-structure/r365-api-journal-entry-structure.json",
  "name": "JournalEntry",
  "description": "A general ledger journal entry line submitted to the R365 API. Debits and credits must balance across the entry.",
  "type": "object",
  "properties": {
    "BatchId": { "type": "string" },
    "userId": { "type": "string" },
    "JENumber": { "type": "string" },
    "Date": { "type": "string" },
    "JEComment": { "type": "string" },
    "JELocation": { "type": "string" },
    "Account": { "type": "string" },
    "Debit": { "type": "double" },
    "Credit": { "type": "double" },
    "DetailLocation": { "type": "string" },
    "PayrollJournalEntry": { "type": "boolean" },
    "PayrollStartDate": { "type": "string" },
    "PayrollEndDate": { "type": "string" }
  },
  "required": ["Date", "JELocation", "Account", "Debit", "Credit", "DetailLocation"]
}