{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/JobResponse", "title": "JobResponse", "type": "object", "properties": { "result": { "type": "string", "description": "Result status of the job submission." }, "urn": { "type": "string", "description": "The URN of the source design." }, "acceptedJobs": { "type": "object", "properties": { "output": { "type": "object", "properties": { "formats": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" } } } } } } } } } }