{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApprovalProcessList", "title": "ApprovalProcessList", "type": "object", "properties": { "approvals": { "type": "object", "additionalProperties": { "type": "array", "items": { "type": "object", "properties": { "description": { "type": [ "string", "null" ] }, "id": { "type": "string" }, "name": { "type": "string" }, "object": { "type": "string" }, "sortOrder": { "type": "integer" } } } } } } }