json

表情の設定ファイルのJSONスキーマです。

    1. {

    2. "description" :"表情設定",

    3. "type":"object",

    4. "properties":

    5. {

    6. "fade_in":

    7. {

    8. "description":"フェードイン設定",

    9. "type":"integer",

    10. "minimam":0

    11. },

    12. "fade_out":

    13. {

    14. "description":"フェードアウト設定",

    15. "type":"integer",

    16. "minimam":0

    17. },

    18. "params":

    19. {

    20. "type":"array",

    21. "items":

    22. {

    23. "description":"パラメータ一覧",

    24. "type":"object",

    25. "properties":

    26. {

    27. "id":{"type":"string"},

    28. "val":{"type":"number"},

    29. "def":{"type":"number"},

    30. "calc":{"type":"string","enum":["add","mult"],"optional":true,"default":"add"},

    31. }

    32. }

    33. }

    34. }

    35. }