Publishing project from SPIN to public
[platform/core/convergence/remote-rsc-svc.git] / src / common / schemas / gyroscoperotationvector.json
1 {
2    "id":"http://openinterconnect.org/schemas/x.org.tizen.gyroscoperotationvector",
3    "$schema":"http://json-schema.org/draft-04/schema#",
4    "title":"gyroscoperotationvector",
5    "definitions":{
6       "x.org.tizen.gyroscoperotationvector":{
7          "type":"object",
8          "properties":{
9             "w":{
10                "type":"double",
11                "description":"W-axis component",
12                "access":"R"
13             },
14             "x":{
15                "type":"double",
16                "description":"X-axis component",
17                "access":"R"
18             },
19             "y":{
20                "type":"double",
21                "description":"Y-axis component",
22                "access":"R"
23             },
24             "z":{
25                "type":"double",
26                "description":"Z-axis component",
27                "access":"R"
28             }
29          }
30       }
31    },
32    "type":"object",
33    "allOf":[
34       {
35          "$ref":"oic.core.json#/definitions/oic.core"
36       },
37       {
38          "$ref":"oic.baseResource.json#/definitions/oic.r.baseresource"
39       },
40       {
41          "$ref":"#/definitions/x.org.tizen.gyroscoperotationvector"
42       }
43    ],
44    "required":["w", "x", "y", "z"]
45 }
46
47