avatarXAVIER HERCE shared you an app

An app to extract data from PDF filles. All PDF files have data that followus the same schema: { "type": "object", "properties": { "publications": { "type": "array", "items": { "type": "object", "properties": { "publication_id": { "type": "integer" }, "title": { "type": "string" }, "url_primary": { "type": "string" }, "editor": { "type": "string" }, "address": { "type": "string" }, "city": { "type": "string" }, "phone": { "type": "string" }, "fax": { "type": "string" }, "email": { "type": "string" }, "classification": { "type": "string" }, "sub_classification": { "type": "string" }, "traffic_data": { "type": "array", "items": { "type": "object", "properties": { "traffic_id": { "type": "integer" }, "date": { "type": "string", "format": "date" }, "unique_browsers": { "type": "integer" }, "visits": { "type": "integer" }, "pages": { "type": "integer" }, "avg_duration_visit": { "type": "string", "format": "time" }, "avg_interaction_time": { "type": "string", "format": "time" }, "pages_per_visit": { "type": "number", "format": "float" }, "daily_traffic": { "type": "array", "items": { "type": "object", "properties": { "daily_traffic_id": { "type": "integer" }, "day": { "type": "integer" }, "unique_browsers": { "type": "integer" }, "visits": { "type": "integer" }, "pages": { "type": "integer" } }, "required": ["daily_traffic_id", "day"] } }, "traffic_graphs": { "type": "array", "items": { "type": "object", "properties": { "graph_id": { "type": "integer" }, "graph_type": { "type": "string" }, "data_points": { "type": "string", "format": "json" } }, "required": ["graph_id", "graph_type"] } } }, "required": ["traffic_id", "date"] } }, "section_data": { "type": "array", "items": { "type": "object", "properties": { "section_id": { "type": "integer" }, "section_name": { "type": "string" }, "pages_viewed": { "type": "integer" }, "percentage": { "type": "number", "format": "float" } }, "required": ["section_id", "section_name"] } } }, "required": ["publication_id", "title"] } } } }

Please login to use this app.