Table Definition: Furniture Description with Properties
{ 'name': 'Table', 'description': 'A piece of furniture with a flat top and one or more legs, used as a surface for working at, eating from or on which to place things.', 'properties': { 'material': { 'type': 'string', 'description': 'The substance used to make the table.' }, 'color': { 'type': 'string', 'description': 'The color of the table.' }, 'shape': { 'type': 'string', 'description': 'The shape of the table.' }, 'legs': { 'type': 'number', 'description': 'The number of legs the table has.' }, 'dimensions': { 'type': 'object', 'description': 'The size of the table.', 'properties': { 'length': { 'type': 'number', 'description': 'The length of the table.' }, 'width': { 'type': 'number', 'description': 'The width of the table.' }, 'height': { 'type': 'number', 'description': 'The height of the table.' } } } } }
原文地址: https://www.cveoy.top/t/topic/ouEV 著作权归作者所有。请勿转载和采集!