Introductions Agenda Recap Update on next spec release
- In last meeting, SDL was the last blocker for next version of the spec
- Identified compelling blocker: default values and null
- Question: about timeframe between releases
- release cadence
swagger: '2.0' | |
info: | |
title: va3 | |
version: '1.0' | |
schemes: | |
- https | |
produces: | |
- application/json | |
x-amazon-apigateway-request-validators: | |
full: |
swagger: '2.0' | |
info: | |
title: API Gateway - Request Validation Demo - [email protected] | |
version: '1.0' | |
schemes: | |
- https | |
produces: | |
- application/json | |
x-amazon-apigateway-request-validators: | |
full: |
BaseViz: | |
def get_json_data(self): | |
return json.dumps([]) | |
TableViz: | |
def get_json_data(self): | |
df = self.get_df() | |
print("This is happening") | |
return json.dumps(dict(records=df.to_dict(orient="records"),columns=list(df.columns),),default=utils.json_iso_dttm_ser,) |