Get Custom Metadata Schema
import roboflow
roboflow.login()
rf = roboflow.Roboflow()
ws = rf.workspace()
schema = ws.get_vision_event_metadata_schema("a1b3c8e1")
for field, info in schema["fields"].items():
print(f"{field}: {info['types']}")page = ws.query_vision_events(
"a1b3c8e1",
customMetadataFilters=[
{"field": "temperature", "operator": "gt", "value": 70, "type": "number"}
],
)Last updated
Was this helpful?