Is it possible to filter the available feature layers for a parameter based on the attribute table the same way we can filter based on the shape type:
# Define the sample paramter
Samples = arcpy.Parameter(
displayName="SamplePoints",
name="SamplePoints",
datatype="GPFeatureLayer",
parameterType="Required",
direction="Input")
# Require the sample to be Points
Samples.filter.list = ["Point"]
# Reqiore the feature class of the layer to have the Float 'value' and Date 'SampleDate'
# ???
Here i want only to be able to select a feature layer for a feature class that have the attribute "value" and "SampleData"