Skip to main content
POST
/
manifest
set or update the game manifest
curl --request POST \
  --url http://localhost:3917/manifest \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "5v5 lane pusher",
  "features": [
    {
      "assertions": [
        "hero-exists"
      ],
      "description": "auto-attack",
      "name": "combat",
      "status": "planned"
    }
  ],
  "genre": "moba",
  "name": "My MOBA"
}
'
{
  "message": "Manifest set with 1 features",
  "ok": true
}

Body

application/json

A GameManifest: name, genre, description, and a list of features, each with a name, description, status (planned/in_progress/complete/verified), and the assertion names that define its done-criteria.

The body is of type any.

Response

200 - application/json

Manifest stored as a world resource. Returns ok:false with an error when the body fails to parse as a GameManifest.