Skip to content

Commit

Permalink
Fix GA types
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Jan 30, 2024
1 parent 2048cf5 commit 9299f85
Showing 1 changed file with 5 additions and 96 deletions.
101 changes: 5 additions & 96 deletions samples/sample_tap_google_analytics/schemas/simple-sample.json
Original file line number Diff line number Diff line change
@@ -1,102 +1,11 @@
{
"type": "object",
"properties": {
"id": {
"type": ["string", "null"]
},
"project_id": {
"type": ["integer", "null"]
},
"short_id": {
"type": ["string", "null"]
},
"title": {
"type": ["null", "string"]
},
"author_name": {
"type": ["null", "string"]
},
"author_email": {
"type": ["null", "string"]
},
"authored_date": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
]
},
"committer_name": {
"type": ["null", "string"]
},
"committer_email": {
"type": ["null", "string"]
},
"committed_date": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
]
},
"created_at": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
]
},
"message": {
"type": ["null", "string"]
},
"allow_failure": {
"type": ["null", "boolean"]
},
"parent_ids": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
]
},
"stats": {
"anyOf": [
{
"type": "object",
"properties": {
"additions": {
"type": "integer"
},
"deletions": {
"type": "integer"
},
"total": {
"type": "integer"
}
}
},
{
"type": "null"
}
]
"totals": {
"type": "array",
"items": {
"type": "string"
}
}
}
}

0 comments on commit 9299f85

Please sign in to comment.