{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Table", "title": "Table", "type": "object", "properties": { "id": { "type": "string", "description": "The Workday ID of the table.", "example": "abc123" }, "descriptor": { "type": "string", "example": "example_value" }, "name": { "type": "string", "description": "The name of the table.", "example": "Example Title" }, "displayName": { "type": "string", "example": "example_value" }, "description": { "type": "string", "example": "A sample description." }, "fields": { "type": "array", "items": { "$ref": "#/components/schemas/DatasetField" }, "example": [] }, "isAccessible": { "type": "boolean", "example": true }, "documentCount": { "type": "integer", "example": 10 } } }