Result of this query:
```
curl -H 'Content-Type: application/json' http://localhost:9200/origin-read/_search\?pretty -d '{
  "query": {        
    "bool": {
      "must": [
        {
          "nested": {
            "path": "intrinsic_metadata",
            "query": {
              "bool": {
                "must": [
                  {
                    "exists": {
                      "field": "intrinsic_metadata.http://schema.org/dateCreated.@value"
                    }
                  }
                ]
              }
            }
          }
        }
      ]
    }
  },
  "size": 1000,
  "from": 0,
  "_source": [
    "intrinsic_metadata.http://schema.org/dateCreated.@value",
    "intrinsic_metadata.http://schema.org/dateModified.@value",
    "intrinsic_metadata.http://schema.org/datePublished.@value",
    "url"
  ]
}' > /tmp/494_dateCreated.json