Sign in

简柏林 / thingskit · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • thingskit
  • dao
  • src
  • test
  • resources
  • TestJsonDescriptor.json
  • DAO layer, services, configuration and UI
    5fdbb51c
    Igor Kulikov authored
    2016-12-01 11:40:28 +0200  
    Browse Files »
TestJsonDescriptor.json 413 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
{
  "schema": {
    "title": "Simple Schema",
    "type": "object",
    "properties": {
      "fieldA": {
        "type": "string"
      },
      "fieldB": {
        "type": "string"
      },
      "fieldC": {
        "description": "Age in years",
        "type": "integer",
        "minimum": 0
      }
    },
    "required": [
      "fieldA",
      "fieldB",
      "fieldC"
    ]
  },
  "form": [
    "*"
  ]
}