records

records

Active filters Clear all

No active filters

Filters

Kunstwerken

Attachments

Click to expand Click to collapse

Dataset schema

Click to expand Click to collapse
Id
               

No description available for this field.

Name (identifier)
id
Type
decimal
Sample
                       
Type
               

No description available for this field.

Name (identifier)
type
Type
text
Sample
                       
Titel kunstwerk
               

No description available for this field.

Name (identifier)
titel_kunstwerk
Type
text
Sample
                       
Achternaam Kunstenaar
               

No description available for this field.

Name (identifier)
achternaam_kunstenaar
Type
text
Sample
                       
Voornaam Kunstenaar
               

No description available for this field.

Name (identifier)
voornaam_kunstenaar
Type
text
Sample
                       
Tussenvoegsel Kunstenaar
               

No description available for this field.

Name (identifier)
tussenvoegsel_kunstenaar
Type
text
Sample
                       
Jaartal plaatsing
               

No description available for this field.

Name (identifier)
jaartal_plaatsing
Type
date
Sample
                       
Jaartal vervaardiging
               

No description available for this field.

Name (identifier)
jaartal_vervaardiging
Type
text
Sample
                       
Collectie
               

No description available for this field.

Name (identifier)
collectie
Type
text
Sample
                       
Wijk
               

No description available for this field.

Name (identifier)
wijk
Type
text
Sample
                       
Adres
               

No description available for this field.

Name (identifier)
adres
Type
text
Sample
                       
Materiaal 1
               

No description available for this field.

Name (identifier)
materiaal_1
Type
text
Sample
                       
Materiaal 2
               

No description available for this field.

Name (identifier)
materiaal_2
Type
text
Sample
                       
Materiaal 3
               

No description available for this field.

Name (identifier)
materiaal_3
Type
text
Sample
                       
Materiaal 4
               

No description available for this field.

Name (identifier)
materiaal_4
Type
text
Sample
                       
Materiaal 5
               

No description available for this field.

Name (identifier)
materiaal_5
Type
text
Sample
                       
latitude
               

No description available for this field.

Name (identifier)
latitude
Type
text
Sample
                       
longitude
               

No description available for this field.

Name (identifier)
longitude
Type
text
Sample
                       
Omschrijving
               

No description available for this field.

Name (identifier)
omschrijving
Type
text
Sample
                       
Samenvatting
               

No description available for this field.

Name (identifier)
samenvatting
Type
text
Sample
                       
Foto 1
               

No description available for this field.

Name (identifier)
foto_1
Type
file
Sample
                       
Foto 2
               

No description available for this field.

Name (identifier)
foto_2
Type
file
Sample
                       
Foto 3
               

No description available for this field.

Name (identifier)
foto_3
Type
text
Sample
                       
Foto 4
               

No description available for this field.

Name (identifier)
foto_4
Type
text
Sample
                       
Foto 5
               

No description available for this field.

Name (identifier)
foto_5
Type
text
Sample
                       
geo_point
               

No description available for this field.

Name (identifier)
geo_point
Type
geo point
Sample
                       

JSON Schema

The following JSON object is a standardized description of your dataset's schema. More about JSON schema.

{
  • "title":"kunstwerken",
  • "type":"object",
  • "oneOf":
    [
    • {
      • "$ref":"#/definitions/kunstwerken"
      }
    ]
    ,
  • "definitions":
    {
    • "kunstwerken":
      {
      • "properties":
        {
        • "records":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/kunstwerken_records"
            }
          }
        }
      }
      ,
    • "geoJSON":
      {
      • "title":"Geo JSON object",
      • "description":"Schema for a Geo JSON object",
      • "type":"object",
      • "required":
        [
        • "type"
        ]
        ,
      • "properties":
        {
        • "crs":
          {
          • "$ref":"#/definitions/crs"
          }
          ,
        • "bbox":
          {
          • "$ref":"#/definitions/bbox"
          }
        }
        ,
      • "oneOf":
        [
        • {
          • "$ref":"#/definitions/geometry"
          }
          ,
        • {
          • "$ref":"#/definitions/geometryCollection"
          }
          ,
        • {
          • "$ref":"#/definitions/feature"
          }
          ,
        • {
          • "$ref":"#/definitions/featureCollection"
          }
        ]
      }
      ,
    • "bbox":
      {
      • "description":"A bounding box as defined by GeoJSON",
      • "type":"array",
      • "items":
        {
        • "type":"number"
        }
      }
      ,
    • "crs":
      {
      • "title":"crs",
      • "description":"a Coordinate Reference System object",
      • "type":
        [
        • "object",
        • "null"
        ]
        ,
      • "required":
        [
        • "type",
        • "properties"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "type":"string"
          }
          ,
        • "properties":
          {
          • "type":"object"
          }
        }
        ,
      • "additionalProperties":false,
      • "oneOf":
        [
        • {
          • "$ref":"#/definitions/namedCrs"
          }
          ,
        • {
          • "$ref":"#/definitions/linkedCrs"
          }
        ]
      }
      ,
    • "namedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "name"
            ]
          }
          ,
        • "properties":
          {
          • "required":
            [
            • "name"
            ]
            ,
          • "additionalProperties":false,
          • "properties":
            {
            • "name":
              {
              • "type":"string"
              }
            }
          }
        }
      }
      ,
    • "linkedObject":
      {
      • "type":"object",
      • "required":
        [
        • "href"
        ]
        ,
      • "properties":
        {
        • "href":
          {
          • "type":"string",
          • "format":"uri"
          }
          ,
        • "type":
          {
          • "type":"string",
          • "description":"Suggested values: proj4, ogjwkt, esriwkt"
          }
        }
      }
      ,
    • "linkedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "link"
            ]
          }
          ,
        • "properties":
          {
          • "$ref":"#/definitions/linkedObject"
          }
        }
      }
      ,
    • "geometryCollection":
      {
      • "title":"GeometryCollection",
      • "description":"A collection of geometry objects",
      • "required":
        [
        • "geometries"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "GeometryCollection"
            ]
          }
          ,
        • "geometries":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"http://json-schema.org/geojson/geometry.json#"
            }
          }
        }
      }
      ,
    • "feature":
      {
      • "title":"Feature",
      • "description":"A Geo JSON feature object",
      • "required":
        [
        • "geometry",
        • "properties"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "Feature"
            ]
          }
          ,
        • "geometry":
          {
          • "oneOf":
            [
            • {
              • "type":"null"
              }
              ,
            • {
              • "$ref":"#/definitions/geometry"
              }
            ]
          }
          ,
        • "properties":
          {
          • "type":
            [
            • "object",
            • "null"
            ]
          }
          ,
        • "id":
          {
            }
          }
        }
        ,
      • "featureCollection":
        {
        • "title":"FeatureCollection",
        • "description":"A Geo JSON feature collection",
        • "required":
          [
          • "features"
          ]
          ,
        • "properties":
          {
          • "type":
            {
            • "enum":
              [
              • "FeatureCollection"
              ]
            }
            ,
          • "features":
            {
            • "type":"array",
            • "items":
              {
              • "$ref":"#/definitions/feature"
              }
            }
          }
        }
        ,
      • "geometry":
        {
        • "title":"geometry",
        • "description":"One geometry as defined by GeoJSON",
        • "type":"object",
        • "required":
          [
          • "type",
          • "coordinates"
          ]
          ,
        • "oneOf":
          [
          • {
            • "title":"Point",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Point"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/position"
                }
              }
            }
            ,
          • {
            • "title":"MultiPoint",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPoint"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/positionArray"
                }
              }
            }
            ,
          • {
            • "title":"LineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "LineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/lineString"
                }
              }
            }
            ,
          • {
            • "title":"MultiLineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiLineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/lineString"
                  }
                }
              }
            }
            ,
          • {
            • "title":"Polygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Polygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/polygon"
                }
              }
            }
            ,
          • {
            • "title":"MultiPolygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPolygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/polygon"
                  }
                }
              }
            }
          ]
          ,
        • "position":
          {
          • "description":"A single position",
          • "type":"array",
          • "minItems":2,
          • "items":
            [
            • {
              • "type":"number"
              }
              ,
            • {
              • "type":"number"
              }
            ]
            ,
          • "additionalItems":false
          }
          ,
        • "positionArray":
          {
          • "description":"An array of positions",
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/position"
            }
          }
          ,
        • "lineString":
          {
          • "description":"An array of two or more positions",
          • "allOf":
            [
            • {
              • "$ref":"#/definitions/positionArray"
              }
              ,
            • {
              • "minItems":2
              }
            ]
          }
          ,
        • "linearRing":
          {
          • "description":"An array of four positions where the first equals the last",
          • "allOf":
            [
            • {
              • "$ref":"#/definitions/positionArray"
              }
              ,
            • {
              • "minItems":4
              }
            ]
          }
          ,
        • "polygon":
          {
          • "description":"An array of linear rings",
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/linearRing"
            }
          }
        }
        ,
      • "kunstwerken_records":
        {
        • "properties":
          {
          • "fields":
            {
            • "type":"object",
            • "properties":
              {
              • "id":
                {
                • "type":"number",
                • "title":"Id",
                • "description":""
                }
                ,
              • "type":
                {
                • "type":"string",
                • "title":"Type",
                • "description":""
                }
                ,
              • "titel_kunstwerk":
                {
                • "type":"string",
                • "title":"Titel kunstwerk",
                • "description":""
                }
                ,
              • "achternaam_kunstenaar":
                {
                • "type":"string",
                • "title":"Achternaam Kunstenaar",
                • "description":""
                }
                ,
              • "voornaam_kunstenaar":
                {
                • "type":"string",
                • "title":"Voornaam Kunstenaar",
                • "description":""
                }
                ,
              • "tussenvoegsel_kunstenaar":
                {
                • "type":"string",
                • "title":"Tussenvoegsel Kunstenaar",
                • "description":""
                }
                ,
              • "jaartal_plaatsing":
                {
                • "type":"string",
                • "format":"date",
                • "title":"Jaartal plaatsing",
                • "description":""
                }
                ,
              • "jaartal_vervaardiging":
                {
                • "type":"string",
                • "title":"Jaartal vervaardiging",
                • "description":""
                }
                ,
              • "collectie":
                {
                • "type":"string",
                • "title":"Collectie",
                • "description":""
                }
                ,
              • "wijk":
                {
                • "type":"string",
                • "title":"Wijk",
                • "description":""
                }
                ,
              • "adres":
                {
                • "type":"string",
                • "title":"Adres",
                • "description":""
                }
                ,
              • "materiaal_1":
                {
                • "type":"string",
                • "title":"Materiaal 1",
                • "description":""
                }
                ,
              • "materiaal_2":
                {
                • "type":"string",
                • "title":"Materiaal 2",
                • "description":""
                }
                ,
              • "materiaal_3":
                {
                • "type":"string",
                • "title":"Materiaal 3",
                • "description":""
                }
                ,
              • "materiaal_4":
                {
                • "type":"string",
                • "title":"Materiaal 4",
                • "description":""
                }
                ,
              • "materiaal_5":
                {
                • "type":"string",
                • "title":"Materiaal 5",
                • "description":""
                }
                ,
              • "latitude":
                {
                • "type":"string",
                • "title":"latitude",
                • "description":""
                }
                ,
              • "longitude":
                {
                • "type":"string",
                • "title":"longitude",
                • "description":""
                }
                ,
              • "omschrijving":
                {
                • "type":"string",
                • "title":"Omschrijving",
                • "description":""
                }
                ,
              • "samenvatting":
                {
                • "type":"string",
                • "title":"Samenvatting",
                • "description":""
                }
                ,
              • "foto_1":
                {
                • "type":"string",
                • "title":"Foto 1",
                • "description":""
                }
                ,
              • "foto_2":
                {
                • "type":"string",
                • "title":"Foto 2",
                • "description":""
                }
                ,
              • "foto_3":
                {
                • "type":"string",
                • "title":"Foto 3",
                • "description":""
                }
                ,
              • "foto_4":
                {
                • "type":"string",
                • "title":"Foto 4",
                • "description":""
                }
                ,
              • "foto_5":
                {
                • "type":"string",
                • "title":"Foto 5",
                • "description":""
                }
                ,
              • "geo_point":
                {
                • "type":"array",
                • "minItems":2,
                • "maxItems":2,
                • "items":
                  {
                  • "type":"number"
                  }
                  ,
                • "title":"geo_point",
                • "description":""
                }
              }
            }
          }
        }
      }
    }