changedInput schema / properties / payload / oneOf
Previous value: -[
- {
- "description": "Plain text, markdown, source code, or any raw stringified JSON envelope (e.g. precomputed hashes).",
- "properties": {
- "content": {
- "description": "Raw string to seal (can be text, code, or stringified JSON).",
- "type": "string"
- },
- "mode": {
- "enum": [
- "text"
- ],
- "type": "string"
- }
- },
- "required": [
- "content"
- ],
- "title": "SimpleText",
- "type": "object"
- },
- {
- "description": "Atomic model inference provenance (eliminates JSON escaping bugs).",
- "properties": {
- "mode": {
- "enum": [
- "inference"
- ],
- "type": "string"
- },
- "model_id": {
- "description": "Model identifier (e.g. claude-3-5-sonnet).",
- "type": "string"
- },
- "output": {
- "description": "Generated model response.",
- "type": "string"
- },
- "prompt": {
- "description": "Original prompt given to the model.",
- "type": "string"
- }
- },
- "required": [
- "output"
- ],
- "title": "Inference",
- "type": "object"
- },
- {
- "description": "Batch of multiple named files/scripts.",
- "properties": {
- "files": {
- "items": {
- "properties": {
- "content": {
- "type": "string"
- },
- "filename": {
- "type": "string"
- }
- },
- "required": [
- "filename",
- "content"
- ],
- "type": "object"
- },
- "type": "array"
- },
- "mode": {
- "enum": [
- "artifacts"
- ],
- "type": "string"
- }
- },
- "required": [
- "files"
- ],
- "title": "Artifacts",
- "type": "object"
- }
-]New value: +[
+ {
+ "description": "Plain text, markdown, source code, or any raw stringified JSON envelope (e.g. precomputed hashes).",
+ "properties": {
+ "content": {
+ "description": "Raw string to seal (can be text, code, or stringified JSON).",
+ "type": "string"
+ },
+ "mode": {
+ "enum": [
+ "text"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "content"
+ ],
+ "title": "SimpleText",
+ "type": "object"
+ },
+ {
+ "description": "Atomic model inference provenance (eliminates JSON escaping bugs).",
+ "properties": {
+ "mode": {
+ "enum": [
+ "inference"
+ ],
+ "type": "string"
+ },
+ "model_id": {
+ "description": "Model identifier (e.g. claude-3-5-sonnet, gpt-4o).",
+ "type": "string"
+ },
+ "output": {
+ "description": "Target response generated by the model.",
+ "type": "string"
+ },
+ "prompt": {
+ "description": "Original prompt given to the model.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "output"
+ ],
+ "title": "Inference",
+ "type": "object"
+ },
+ {
+ "description": "Batch of multiple named files, code repositories, or SBOM components.",
+ "properties": {
+ "files": {
+ "items": {
+ "properties": {
+ "content": {
+ "description": "Full file content string.",
+ "type": "string"
+ },
+ "filename": {
+ "description": "Relative file path or name.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "filename",
+ "content"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "mode": {
+ "enum": [
+ "artifacts"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "files"
+ ],
+ "title": "Artifacts",
+ "type": "object"
+ }
+]