changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "card_checkout": {
+ "description": "URL for card payment",
+ "type": "string"
+ },
+ "credits_are_per_product": {
+ "description": "Always true: a quick credit cannot pay for a full search",
+ "type": "boolean"
+ },
+ "free_searches": {
+ "description": "Always false: registration grants no credits",
+ "type": "boolean"
+ },
+ "packs": {
+ "description": "Buyable credit packs",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "buys": {
+ "description": "Which product these credits are valid for: search or quick",
+ "type": "string"
+ },
+ "credits": {
+ "description": "How many runs the pack buys",
+ "type": "number"
+ },
+ "description": {
+ "type": "string"
+ },
+ "pack": {
+ "description": "Pack code to pass to checkout or to pay for over x402",
+ "type": "string"
+ },
+ "price": {
+ "description": "Human-readable price",
+ "type": "string"
+ }
+ },
+ "required": [
+ "pack",
+ "credits",
+ "price",
+ "buys",
+ "description"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "products": {
+ "description": "The two things Jobero sells",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "price": {
+ "description": "Human-readable price",
+ "type": "string"
+ },
+ "tool": {
+ "description": "Which tool buys this product",
+ "type": "string"
+ },
+ "typical_time": {
+ "description": "How long delivery usually takes",
+ "type": "string"
+ },
+ "unit": {
+ "description": "What one purchase delivers",
+ "type": "string"
+ }
+ },
+ "required": [
+ "tool",
+ "unit",
+ "price",
+ "typical_time"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "service": {
+ "description": "Service name",
+ "type": "string"
+ },
+ "x402": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "asset": {
+ "description": "Token accepted, USDC",
+ "type": "string"
+ },
+ "how": {
+ "description": "How to complete the payment loop",
+ "type": "string"
+ },
+ "network": {
+ "description": "Chain the payment settles on",
+ "type": "string"
+ },
+ "pay_to": {
+ "description": "Receiving address",
+ "type": "string"
+ },
+ "prices": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "description": "Pack code to atomic USDC amount",
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ }
+ },
+ "required": [
+ "network",
+ "asset",
+ "pay_to",
+ "prices",
+ "how"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Stablecoin payment terms, null if x402 is not configured"
+ }
+ },
+ "required": [
+ "service",
+ "products",
+ "packs",
+ "credits_are_per_product",
+ "card_checkout",
+ "x402",
+ "free_searches"
+ ],
+ "type": "object"
+}