
| Name | Value |
|---|---|
| NAME | SCHEMA SCHEMA |
| CONTENT TYPE | JSON FORM SCHEMA |
| RESERVED FOR SYSTEM | 0 |
| CONTENT |
{
"name": {
"type": "string",
"description": "Name of the schema",
"minlength": 3,
"maxlength": 30,
"title": "Name"
},
"contentType": {
"type": "number",
"description": "The type of web content being
"type": "object",
created.",
"title": "Content Type"
},
"reservedSystem": {
"type": "boolean",
"description": "Mark if reserved for system
functionality",
"title": "Reserved for System"
},
"renderName": {
"properties": {
"type": "string",
"description": "The name of the render to use",
"minlength": 5,
"maxlength": 50,
"title": "Render Name"
},
"testerName": {
"type": "string",
"description": "The name of the tester to use",
"minlength": 3,
"schemas": {
"maxlength": 50,
"title": "Render Name"
},
"content": {
"type": "string",
"description": "The content to save",
"title": "Content"
}
},
"required": [
"type": "array",
"name",
"contentType"
],
"errorMessage": {
"required": {
"name": "The Schema Name is required.",
"contentType": "The Content Type is required."
}
}
}
"items": {
}
}
}
"type": "object",
"title": "Schemas",
"properties": {
|