{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SchemaObject", "title": "SchemaObject", "type": "object", "description": "A domain object type definition in the ODP schema", "properties": { "name": { "type": "string", "description": "Name of the object type" }, "display_name": { "type": "string", "description": "Human-readable display name" }, "description": { "type": "string", "description": "Description of the object type" }, "fields": { "type": "array", "description": "Fields defined on the object type", "items": { "$ref": "#/components/schemas/SchemaField" } } } }