1
enregistrement
Bauprojekte Immobilien - kopieren
Modèle de données
Cliquez pour déplier Cliquez pour replier
Schéma JSON
L'objet JSON ci dessous est une description standardisée du modèle de votre jeu de données. Pour en savoir plus sur JSON schema.
{
- "title":"bauprojekte-immobilien-kopieren",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/bauprojekte-immobilien-kopieren"
}
] - "definitions":{
- "bauprojekte-immobilien-kopieren":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/bauprojekte-immobilien-kopieren_records"
}
}
} - "records":
} - "properties":
- "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"
}
} - "crs":
- "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"
}
} - "type":
- "additionalProperties":false,
- "oneOf":[
- ,{
- "$ref":"#/definitions/namedCrs"
} - {
- "$ref":"#/definitions/linkedCrs"
}
]
} - "namedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "name"
]
} - "enum":
- "properties":{
- "required":,[
- "name"
] - "additionalProperties":false,
- "properties":{
- "name":{
- "type":"string"
}
} - "name":
} - "required":
} - "type":
} - "properties":
- "linkedObject":,{
- "type":"object",
- "required":,[
- "href"
] - "properties":{
- "href":,{
- "type":"string",
- "format":"uri"
} - "type":{
- "type":"string",
- "description":"Suggested values: proj4, ogjwkt, esriwkt"
}
} - "href":
} - "linkedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "link"
]
} - "enum":
- "properties":{
- "$ref":"#/definitions/linkedObject"
}
} - "type":
} - "properties":
- "geometryCollection":,{
- "title":"GeometryCollection",
- "description":"A collection of geometry objects",
- "required":,[
- "geometries"
] - "properties":{
- "type":,{
- "enum":[
- "GeometryCollection"
]
} - "enum":
- "geometries":{
- "type":"array",
- "items":{
- "$ref":"http://json-schema.org/geojson/geometry.json#"
}
}
} - "type":
} - "feature":,{
- "title":"Feature",
- "description":"A Geo JSON feature object",
- "required":,[
- "geometry",
- "properties"
] - "properties":{
- "type":,{
- "enum":[
- "Feature"
]
} - "enum":
- "geometry":,{
- "oneOf":[
- ,{
- "type":"null"
} - {
- "$ref":"#/definitions/geometry"
}
]
} - "oneOf":
- "properties":,{
- "type":[
- "object",
- "null"
]
} - "type":
- "id":{}
} - "type":
} - "featureCollection":,{
- "title":"FeatureCollection",
- "description":"A Geo JSON feature collection",
- "required":,[
- "features"
] - "properties":{
- "type":,{
- "enum":[
- "FeatureCollection"
]
} - "enum":
- "features":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/feature"
}
}
} - "type":
} - "geometry":,{
- "title":"geometry",
- "description":"One geometry as defined by GeoJSON",
- "type":"object",
- "required":,[
- "type",
- "coordinates"
] - "oneOf":,[
- ,{
- "title":"Point",
- "properties":{
- "type":,{
- "enum":[
- "Point"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/position"
}
} - "type":
} - ,{
- "title":"MultiPoint",
- "properties":{
- "type":,{
- "enum":[
- "MultiPoint"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/positionArray"
}
} - "type":
} - ,{
- "title":"LineString",
- "properties":{
- "type":,{
- "enum":[
- "LineString"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/lineString"
}
} - "type":
} - ,{
- "title":"MultiLineString",
- "properties":{
- "type":,{
- "enum":[
- "MultiLineString"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/lineString"
}
}
} - "type":
} - ,{
- "title":"Polygon",
- "properties":{
- "type":,{
- "enum":[
- "Polygon"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/polygon"
}
} - "type":
} - {
- "title":"MultiPolygon",
- "properties":{
- "type":,{
- "enum":[
- "MultiPolygon"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/polygon"
}
}
} - "type":
}
] - "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"
}
}
} - "bauprojekte-immobilien-kopieren_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "id":,{
- "type":"integer",
- "title":"ID",
- "description":"Identifikation des Datensatz"
} - "city":,{
- "type":"string",
- "title":"Ort",
- "description":"Ort"
} - "publishonwebsite":,{
- "type":"integer",
- "title":"publishOnWebsite",
- "description":""
} - "status":,{
- "type":"string",
- "title":"status",
- "description":""
} - "startofconstruction":,{
- "type":"string",
- "title":"startOfConstruction",
- "description":""
} - "moveinto":,{
- "type":"string",
- "title":"moveInto",
- "description":""
} - "titlede":,{
- "type":"string",
- "title":"titleDe",
- "description":""
} - "titlefr":,{
- "type":"string",
- "title":"titleFr",
- "description":""
} - "titleit":,{
- "type":"string",
- "title":"titleIt",
- "description":""
} - "titleen":,{
- "type":"string",
- "title":"titleEn",
- "description":""
} - "claimde":,{
- "type":"string",
- "title":"claimDe",
- "description":""
} - "claimfr":,{
- "type":"string",
- "title":"claimFr",
- "description":""
} - "claimit":,{
- "type":"string",
- "title":"claimIt",
- "description":""
} - "claimen":,{
- "type":"string",
- "title":"claimEn",
- "description":""
} - "leadde":,{
- "type":"string",
- "title":"leadDe",
- "description":""
} - "leadfr":,{
- "type":"string",
- "title":"leadFr",
- "description":""
} - "leadit":,{
- "type":"string",
- "title":"leadIt",
- "description":""
} - "leaden":,{
- "type":"string",
- "title":"leadEn",
- "description":""
} - "phase":,{
- "type":"string",
- "title":"phase",
- "description":""
} - "portfolio":,{
- "type":"string",
- "title":"portfolio",
- "description":""
} - "region":,{
- "type":"string",
- "title":"region",
- "description":""
} - "mainlanguage":,{
- "type":"string",
- "title":"mainLanguage",
- "description":""
} - "economicunit":,{
- "type":"string",
- "title":"economicUnit",
- "description":""
} - "landarea":,{
- "type":"string",
- "title":"landArea",
- "description":""
} - "mainusefulareas":,{
- "type":"string",
- "title":"mainUsefulAreas",
- "description":""
} - "parkings":,{
- "type":"string",
- "title":"parkings",
- "description":""
} - "areazonede":,{
- "type":"string",
- "title":"areaZoneDe",
- "description":""
} - "areazonefr":,{
- "type":"string",
- "title":"areaZoneFr",
- "description":""
} - "areazoneit":,{
- "type":"string",
- "title":"areaZoneIt",
- "description":""
} - "areazoneen":,{
- "type":"string",
- "title":"areaZoneEn",
- "description":""
} - "street":,{
- "type":"string",
- "title":"street",
- "description":""
} - "streetnumber":,{
- "type":"string",
- "title":"streetNumber",
- "description":""
} - "zipcode":,{
- "type":"string",
- "title":"zipCode",
- "description":""
} - "appointments":,{
- "type":"string",
- "title":"appointments",
- "description":""
} - "links":,{
- "type":"string",
- "title":"links",
- "description":""
} - "urlfreebrandwebsite":,{
- "type":"string",
- "title":"urlFreebrandWebsite",
- "description":""
} - "urlbrandvideo":,{
- "type":"string",
- "title":"urlBrandVideo",
- "description":""
} - "geompoint":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"geomPoint",
- "description":""
} - "mapzoom":,{
- "type":"integer",
- "title":"mapZoom",
- "description":""
} - "contacts":,{
- "type":"string",
- "title":"contacts",
- "description":""
} - "teasers":,{
- "type":"string",
- "title":"teasers",
- "description":""
} - "keyvisuals":,{
- "type":"string",
- "title":"keyVisuals",
- "description":""
} - "gallery":,{
- "type":"string",
- "title":"gallery",
- "description":""
} - "mainusefulareastotal":{
- "type":"integer",
- "title":"mainUsefulAreasTotal",
- "description":""
}
} - "id":
}
} - "fields":
} - "properties":
} - "bauprojekte-immobilien-kopieren":
}
Soumettre une réutilisation
Cliquez pour déplier Cliquez pour replier
Connectez-vous pour proposer une réutilisation.
Jeux de données similaires
- Information sur les projets de construction en cours de CFF Immobilier.
- État des ascenseurs et escaliers mécaniques dans les gares CFF, informations actuellement disponibles pour les gares de Zurich.
- Ausgabe Standort der Uhren an den Betriebspunkten der SBB.
- Standort der Bahntunnels der SBB.