cosmoguard-bd/data/jsonschema.json

57 lines
No EOL
1,014 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"INCI": {
"type": "array",
"items": [
{
"type": "string"
},
{
"type": "string"
}
]
},
"CAS": {
"type": "array",
"items": [
{
"type": "array",
"items": [
{
"type": "string"
},
{
"type": "string"
}
]
},
{
"type": "array",
"items": [
{
"type": "string"
}
]
}
]
},
"percentage": {
"type": "array",
"items": [
{
"type": "number"
},
{
"type": "number"
}
]
}
},
"required": [
"INCI",
"CAS",
"percentage"
]
}