Propertyware · Schema

AutoJournalEntry

JSON Schema for AutoJournalEntry

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
comments string Comments.
createdBy string User who created the record.
createdDateTime string Date and time the record was created. (Timezone: UTC)
credit string Credit amount.
debit string Debit amount.
endDate string End date.
frequency string Frequency.
id integer Unique identifier.
lastModifiedBy string User who last modified the record.
lastModifiedDateTime string Date and time the record was last modified. (Timezone: UTC)
lastPostDate string Last post date.
name string Auto journal entry name.
nextPostDate string Next post date.
payDay string Pay day.
startDate string Start date.
View JSON Schema on GitHub

JSON Schema

auto-journal-entry.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AutoJournalEntry",
  "description": "JSON Schema for AutoJournalEntry",
  "type": "object",
  "properties": {
    "comments": {
      "type": "string",
      "description": "Comments."
    },
    "createdBy": {
      "type": "string",
      "description": "User who created the record."
    },
    "createdDateTime": {
      "type": "string",
      "format": "date-time",
      "description": "Date and time the record was created. (Timezone: UTC)"
    },
    "credit": {
      "type": "string",
      "description": "Credit amount."
    },
    "debit": {
      "type": "string",
      "description": "Debit amount."
    },
    "endDate": {
      "type": "string",
      "format": "date",
      "description": "End date."
    },
    "frequency": {
      "type": "string",
      "description": "Frequency.",
      "enum": [
        "WEEKLY",
        "MONTHLY",
        "YEARLY",
        "MANUALLY"
      ]
    },
    "id": {
      "type": "integer",
      "format": "int64",
      "description": "Unique identifier."
    },
    "lastModifiedBy": {
      "type": "string",
      "description": "User who last modified the record."
    },
    "lastModifiedDateTime": {
      "type": "string",
      "format": "date-time",
      "description": "Date and time the record was last modified. (Timezone: UTC)"
    },
    "lastPostDate": {
      "type": "string",
      "format": "date",
      "description": "Last post date."
    },
    "name": {
      "type": "string",
      "description": "Auto journal entry name."
    },
    "nextPostDate": {
      "type": "string",
      "format": "date",
      "description": "Next post date."
    },
    "payDay": {
      "type": "string",
      "description": "Pay day."
    },
    "startDate": {
      "type": "string",
      "format": "date",
      "description": "Start date."
    }
  }
}