{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MappingStatus", "title": "MappingStatus", "type": "object", "description": "Status information for a Mapping resource", "properties": { "state": { "type": "string", "description": "Current state of the Mapping", "enum": [ "Inactive", "Running", "Error" ], "example": "Inactive" }, "reason": { "type": "string", "description": "Human-readable reason for the current state", "example": "example_value" } } }