Nurama Developers

create_submission

Bundle a set of items at given creator-tier paths into a submission for reviewer review.

Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.

Bundle a set of items at given creator-tier paths into a submission for reviewer review. Submissions are immutable snapshots — they freeze the included paths at creation time. Optionally start empty and add items later with add_items_to_submission.

Input

PropertyTypeRequiredDescription
projectIdstringyesUUID of the project.
subjectstringnoSubject / title of the submission.
descriptionstringnoOptional longer description.
versionstringnoOptional version label (e.g. v1, 2026.03).
itemPathsstring[]noProject paths to include (e.g. creator/folder1/asset.jpg). Omit to start empty.

JSON Schema

{
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "description": "UUID of the project."
    },
    "subject": {
      "type": "string",
      "description": "Subject / title of the submission."
    },
    "description": {
      "type": "string",
      "description": "Optional longer description."
    },
    "version": {
      "type": "string",
      "description": "Optional version label (e.g. `v1`, `2026.03`)."
    },
    "itemPaths": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Project paths to include (e.g. `creator/folder1/asset.jpg`). Omit to start empty."
    }
  },
  "required": [
    "projectId"
  ],
  "additionalProperties": false
}

On this page