toolsOzoneSetDefs top-level constant
tools.ozone.set.defs
Implementation
const toolsOzoneSetDefs = <String, dynamic>{
"lexicon": 1,
"id": "tools.ozone.set.defs",
"defs": {
"set": {
"type": "object",
"required": ["name"],
"properties": {
"name": {"type": "string", "minLength": 3, "maxLength": 128},
"description": {
"type": "string",
"maxLength": 10240,
"maxGraphemes": 1024
}
}
},
"setView": {
"type": "object",
"required": ["name", "setSize", "createdAt", "updatedAt"],
"properties": {
"name": {"type": "string", "minLength": 3, "maxLength": 128},
"description": {
"type": "string",
"maxLength": 10240,
"maxGraphemes": 1024
},
"setSize": {"type": "integer"},
"createdAt": {"type": "string", "format": "datetime"},
"updatedAt": {"type": "string", "format": "datetime"}
}
}
}
};