123456789101112131415161718192021222324252627 |
- {
- "className": "CurationStatus",
- "newProperties": [
- {
- "name": "approved",
- "description": "Indicates whether the content was approved by the Curator",
- "required": false,
- "property_type": { "Single": "Bool" },
- "locking_policy": { "is_locked_from_controller": true }
- },
- {
- "name": "comment",
- "description": "Short, optional comment from the Curator",
- "required": false,
- "property_type": { "Single": { "Text": 256 } },
- "locking_policy": { "is_locked_from_controller": true }
- },
- {
- "name": "entityId",
- "description": "ID of the curated entity. It's not a relation to prevent removal lock and allow different types of entities. Used to confirm the validity of Content => CurationStatus relation.",
- "required": true,
- "unique": true,
- "property_type": { "Single": "Uint64" },
- "locking_policy": { "is_locked_from_controller": true }
- }
- ]
- }
|