Input for creating a domain object type
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SchemaObjectInput", "title": "SchemaObjectInput", "type": "object", "description": "Input for creating a domain object type", "required": [ "display_name" ], "properties": { "display_name": { "type": "string", "description": "Human-readable display name" }, "description": { "type": "string", "description": "Description of the object type" } } }