2
erregistroak
Périmètres éligibles - Dispositif ERREKAGRI
Datu-multzoen eskema
Sakatu hedatzeko Sakatu ixteko
JSON eskema
Hurrenngo JSON objektua datu-multzoaren eskemaren deskribapen estandarizatua da. Gehiago JSON eskemari buruz.
{
- "title":"perimetres_eligibles",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/perimetres_eligibles"
}
] - "definitions":{
- "perimetres_eligibles":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/perimetres_eligibles_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"
}
}
} - "perimetres_eligibles_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "geo_point_2d":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"Geo Point",
- "description":""
} - "geo_shape":,{
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/geometry"
}
] - "title":"Geo Shape",
- "description":""
} - "gid":,{
- "type":"integer",
- "title":"gid",
- "description":""
} - "idtronconh":,{
- "type":"number",
- "title":"IdTronconH",
- "description":""
} - "numerotron":,{
- "type":"integer",
- "title":"NumeroTron",
- "description":""
} - "etat":,{
- "type":"string",
- "title":"Etat",
- "description":""
} - "sens":,{
- "type":"string",
- "title":"Sens",
- "description":""
} - "largeur":,{
- "type":"string",
- "title":"Largeur",
- "description":""
} - "nature":,{
- "type":"string",
- "title":"Nature7",
- "description":""
} - "navigable":,{
- "type":"string",
- "title":"Navigable_",
- "description":""
} - "gabarit":,{
- "type":"string",
- "title":"Gabarit",
- "description":""
} - "possol":,{
- "type":"string",
- "title":"PosSol",
- "description":""
} - "cdtronconh":,{
- "type":"string",
- "title":"CdTronconH",
- "description":""
} - "cdsousmili":,{
- "type":"string",
- "title":"CdSousMili",
- "description":""
} - "cdentitehy":,{
- "type":"string",
- "title":"CdEntiteHy",
- "description":""
} - "cdentite_1":,{
- "type":"string",
- "title":"CdEntite_1",
- "description":""
} - "nomentiteh":,{
- "type":"string",
- "title":"NomEntiteH",
- "description":""
} - "candidat1":,{
- "type":"string",
- "title":"Candidat1_",
- "description":""
} - "toponyme2":,{
- "type":"string",
- "title":"Toponyme2_",
- "description":""
} - "candidat2":,{
- "type":"string",
- "title":"Candidat2_",
- "description":""
} - "pkamonttro":,{
- "type":"integer",
- "title":"PkAmontTro",
- "description":""
} - "pkavaltron":,{
- "type":"integer",
- "title":"PkAvalTron",
- "description":""
} - "idnoeudhyd":,{
- "type":"number",
- "title":"IDNoeudHyd",
- "description":""
} - "idnoeudh_1":,{
- "type":"number",
- "title":"IDNoeudH_1",
- "description":""
} - "gid_2":,{
- "type":"integer",
- "title":"gid_2",
- "description":""
} - "idtronco_1":,{
- "type":"number",
- "title":"IdTronco_1",
- "description":""
} - "numerotr_1":,{
- "type":"integer",
- "title":"NumeroTr_1",
- "description":""
} - "etat_2":,{
- "type":"string",
- "title":"Etat_2",
- "description":""
} - "sens_2":,{
- "type":"string",
- "title":"Sens_2",
- "description":""
} - "largeur_2":,{
- "type":"string",
- "title":"Largeur_2",
- "description":""
} - "nature_2":,{
- "type":"string",
- "title":"Nature",
- "description":""
} - "gabarit_2":,{
- "type":"string",
- "title":"Gabarit_2",
- "description":""
} - "possol_2":,{
- "type":"string",
- "title":"PosSol_2",
- "description":""
} - "cdtronco_1":,{
- "type":"string",
- "title":"CdTronco_1",
- "description":""
} - "cdsousmi_1":,{
- "type":"string",
- "title":"CdSousMi_1",
- "description":""
} - "cdentite_2":,{
- "type":"string",
- "title":"CdEntite_2",
- "description":""
} - "cdentite_3":,{
- "type":"string",
- "title":"CdEntite_3",
- "description":""
} - "nomentit_1":,{
- "type":"string",
- "title":"NomEntit_1",
- "description":""
} - "pkamontt_1":,{
- "type":"integer",
- "title":"PkAmontT_1",
- "description":""
} - "pkavaltr_1":,{
- "type":"integer",
- "title":"PkAvalTr_1",
- "description":""
} - "idnoeudh_2":,{
- "type":"number",
- "title":"IDNoeudH_2",
- "description":""
} - "idnoeudh_3":,{
- "type":"number",
- "title":"IDNoeudH_3",
- "description":""
} - "layer":,{
- "type":"string",
- "title":"layer",
- "description":""
} - "path":,{
- "type":"string",
- "title":"path",
- "description":""
} - "geopoint":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"geopoint",
- "description":""
} - "description":{
- "type":"string",
- "title":"Description",
- "description":""
}
} - "geo_point_2d":
}
} - "fields":
} - "properties":
} - "perimetres_eligibles":
}
Igorri berrerabilera
Sakatu hedatzeko Sakatu ixteko
Hasi saioa berrerabilera berria bidaltzeko.