result = []
table = None
for tableTested in Document.Data.Tables:
	if(tableTested.Name == jsonParam['name']):
		table = tableTested
		break
if(table != None):
	for propertyDesc in Document.Data.Properties.GetProperties(DataPropertyClass.Table):
		if(table.Properties.HasPropertyValue(propertyDesc.Name)):
			property = table.Properties[propertyDesc.Name]
			propertyAsDict = {}
			propertyAsDict['name'] = propertyDesc.Name
			propertyAsDict['value'] = property
			result.append(propertyAsDict)
resultAsString = serializeToJSON(result)
setResultProperty(resultAsString)