Propertyware · Schema

Amenity

Amenity

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
code string Amenity code.
id integer Unique identifier.
name string Amenity name.
type string Amenity type.
View JSON Schema on GitHub

JSON Schema

amenity.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Amenity",
  "description": "Amenity",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "Amenity code."
    },
    "id": {
      "type": "integer",
      "format": "int64",
      "description": "Unique identifier."
    },
    "name": {
      "type": "string",
      "description": "Amenity name."
    },
    "type": {
      "type": "string",
      "description": "Amenity type."
    }
  }
}