-
Notifications
You must be signed in to change notification settings - Fork 1
/
utapri-schema.yml
65 lines (65 loc) Β· 1.08 KB
/
utapri-schema.yml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
$schema: "http://json-schema.org/draft-04/schema#"
title: "utapri"
type: "object"
required:
- "characters"
- "games"
- "songs"
properties:
characters:
type: "array"
items:
$ref: "#/definitions/character"
games:
type: "array"
items:
type: "string"
songs:
type: "array"
items:
$ref: "#/definitions/song"
definitions:
character:
type: "object"
required:
- name
- name_en
- sex
properties:
name:
type: "string"
name_en:
type: "string"
sex:
type: "string"
height:
type: "string"
weight:
type: "string"
birthday:
type: "string"
blood_type:
type: "string"
group:
type: "string"
color_code:
type: "string"
song:
type: "object"
required:
- title
- album
- singers
- date
properties:
title:
type: "string"
album:
type: "string"
singers:
type: "array"
group:
type: "string"
date:
type: "string"