Skip to main content

host_application_v1_0.json

host_application.json Copy Json { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "name...

Updated over 3 weeks ago

host_application.json

Copy Json

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "name": {
      "enum": [
        "VStitcher",
        "Lotta"
      ]
    },
    "version": {
      "type": "string",
      "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$"
    },
    "build": {
      "type": "integer",
      "minimum": 0
    },
    "window_rect": {
      "type": "object",
      "properties": {
        "left": {
          "type": "integer"
        },
        "top": {
          "type": "integer"
        },
        "width": {
          "type": "integer",
          "minimum": 0
        },
        "height": {
          "type": "integer",
          "minimum": 0
        }
      },
      "required": [
        "left",
        "top",
        "width",
        "height"
      ]
    }
  },
  "required": [
    "name",
    "version",
    "build",
    "window_rect"
  ]
}
Did this answer your question?