Propertyware · Schema

BasicVendor

JSON Schema for BasicVendor

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
address string Address.
createdBy string User who created the record.
createdDateTime string Date and time the record was created. (Timezone: UTC)
customFields array Custom fields.
email string Email address.
fax string Fax number.
id integer Unique identifier.
lastModifiedBy string User who last modified the record.
lastModifiedDateTime string Date and time the record was last modified. (Timezone: UTC)
name string Name.
otherPhone string Other phone number.
phone string Phone number.
View JSON Schema on GitHub

JSON Schema

basic-vendor.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BasicVendor",
  "description": "JSON Schema for BasicVendor",
  "type": "object",
  "properties": {
    "address": {
      "type": "string",
      "description": "Address."
    },
    "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)"
    },
    "customFields": {
      "type": "array",
      "description": "Custom fields.",
      "items": {
        "$ref": "#/components/schemas/CustomField"
      }
    },
    "email": {
      "type": "string",
      "description": "Email address."
    },
    "fax": {
      "type": "string",
      "description": "Fax number."
    },
    "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)"
    },
    "name": {
      "type": "string",
      "description": "Name."
    },
    "otherPhone": {
      "type": "string",
      "description": "Other phone number."
    },
    "phone": {
      "type": "string",
      "description": "Phone number."
    }
  }
}