removedInput schema / $defs
Removed value: -{
- "RegistryEntryInput": {
- "description": "Public-safe ProofRelay Registry entry draft input.",
- "properties": {
- "conformance_fixture_hash": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Optional conformance fixture hash.",
- "title": "Conformance Fixture Hash"
- },
- "entry_type": {
- "description": "Registry subject category.",
- "enum": [
- "mcp_server",
- "agent",
- "api",
- "workflow",
- "adapter"
- ],
- "title": "Entry Type",
- "type": "string"
- },
- "evidence_bundle_hash": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Optional bundle hash.",
- "title": "Evidence Bundle Hash"
- },
- "identity_reference_hash": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Optional PREP-3 identity reference hash.",
- "title": "Identity Reference Hash"
- },
- "mcp_server_card_hash": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Optional MCP server-card hash.",
- "title": "Mcp Server Card Hash"
- },
- "name": {
- "description": "Public display name, no secrets.",
- "title": "Name",
- "type": "string"
- },
- "non_secret_refs": {
- "description": "Public-safe listing references.",
- "items": {
- "type": "string"
- },
- "title": "Non Secret Refs",
- "type": "array"
- },
- "openapi_schema_hash": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Optional OpenAPI schema hash.",
- "title": "Openapi Schema Hash"
- },
- "payment_context_hash": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Optional payment context hash.",
- "title": "Payment Context Hash"
- },
- "profiles": {
- "description": "PREP profiles supported by the subject.",
- "items": {
- "type": "string"
- },
- "title": "Profiles",
- "type": "array"
- },
- "proof_envelope_hash": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Optional proof hash.",
- "title": "Proof Envelope Hash"
- },
- "replay_test_hash": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Optional replay test hash.",
- "title": "Replay Test Hash"
- },
- "status": {
- "default": "draft",
- "description": "Public registry workflow status.",
- "enum": [
- "draft",
- "evidence_submitted",
- "verified_bundle",
- "replay_tested",
- "listed"
- ],
- "title": "Status",
- "type": "string"
- },
- "subject_hash": {
- "description": "SHA-256 hash of registry subject.",
- "title": "Subject Hash",
- "type": "string"
- },
- "verifier_response_hash": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Optional verifier response hash.",
- "title": "Verifier Response Hash"
- }
- },
- "required": [
- "entry_type",
- "name",
- "subject_hash"
- ],
- "title": "RegistryEntryInput",
- "type": "object"
- }
-}
addedInput schema / properties / entry / properties
Added value: +{
+ "conformance_fixture_hash": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "entry_type": {
+ "enum": [
+ "mcp_server",
+ "agent",
+ "api",
+ "workflow",
+ "adapter"
+ ],
+ "type": "string"
+ },
+ "evidence_bundle_hash": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "identity_reference_hash": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "mcp_server_card_hash": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "name": {
+ "type": "string"
+ },
+ "non_secret_refs": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "openapi_schema_hash": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "payment_context_hash": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "profiles": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "proof_envelope_hash": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "replay_test_hash": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "status": {
+ "enum": [
+ "draft",
+ "evidence_submitted",
+ "verified_bundle",
+ "replay_tested",
+ "listed"
+ ],
+ "type": "string"
+ },
+ "subject_hash": {
+ "type": "string"
+ },
+ "verifier_response_hash": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+}