Showing:

Annotations
Diagram
Properties
Constraints
Enumerations
Used By
Source
Definition RoomTypeList
definitions_RoomTypeList.html#/definitions/RoomTypeList/properties/RoomTypes
Annotations
Title  RoomTypeList

Description  The set of all rooms matching any of the listed room types.
Diagram
Type object
Properties
Name Occurrence
RoomTypes
required
Additional Properties false
Used by
Source

 "RoomTypeList": {
  "type": "object",
  "additionalProperties": false,
  "title": "RoomTypeList",
  "description": "The set of all rooms matching any of the listed room types.",
  "required": ["RoomTypes"],
  "properties": {
    "RoomTypes": {
      "type": "array",
      "minItems": 1,
      "maxItems": 7,
      "title": "Roomtypes",
      "items": {}
    }
  }
}


Definition RoomTypes
definitions_RoomTypeList.html#/definitions/RoomTypeList/properties/RoomTypes/items
Annotations
Title  Roomtypes

Diagram
Type array
Constraints
Unique Items : false

Array Items
Additional Items true
Used by
Schema
RoomTypeList
Source

 "RoomTypes": {
  "type": "array",
  "minItems": 1,
  "maxItems": 7,
  "title": "Roomtypes",
  "items": {
    "type": "string",
    "enum": [
      "Bathroom",
      "Kitchen",
      "Living",
      "Closet",
      "Bedroom",
      "Dining",
      "Hallway"
    ]
  }
}


Definition RoomTypes/items
Diagram
Type string
Enumeration
Values
Bathroom
Kitchen
Living
Closet
Bedroom
Dining
Hallway
Used by
Source

 "items": {
  "type": "string",
  "enum": [
    "Bathroom",
    "Kitchen",
    "Living",
    "Closet",
    "Bedroom",
    "Dining",
    "Hallway"
  ]
}