Skip to main content

style_window_v1_0.json

style_window.json Copy Json { "$schema": "http://json-schema.org/draft-04/schema#", "description": "style properties for API window",...

Updated over 3 weeks ago

style_window.json

Copy Json

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "description": "style properties for API window",
  "properties": {
    "allow_resize": {
      "type": "boolean"
    },
    "enable_maximize": {
      "type": "boolean"
    },
    "enable_minimize": {
      "type": "boolean"
    },
    "minimum_sizes": {
      "type": "object",
      "properties": {
        "width": {
          "type": "integer",
          "minimum": 0
        },
        "height": {
          "type": "integer",
          "minimum": 0
        }
      },
      "required": [
        "width",
        "height"
      ]
    }
  }
}
Did this answer your question?