Schema 06

Main page Schemas

version 001

Земельні ділянки

urn:cav:06000000-2.001
type object
properties
  • region
Область
type string
  • district
Район
type string
  • cadastral_number
Кадастровий номер
type string
  • area
Площа, кв.м/га
type integer
minimum 1
exclusiveMinimum False
  • forms_of_land_ownership
Форми власності на землю.
type array
items
type string
enum державна, приватна, комунальна
  • co_owners
Наявність співвласників
type boolean
default False
  • availability_of_utilities
Наявність на ділянці інженерних мереж
type boolean
default True
  • current_use
*Поточне використання *
type boolean
default True
additionalProperties False

In jsonschema format:

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "id": "urn:cav:06000000-2.001",
  "title": "Земельні ділянки",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "region": {
      "title": "Область",
      "type": "string"
    },
    "district": {
      "type": "string",
      "title": "Район"
    },
    "cadastral_number": {
      "title": "Кадастровий номер",
      "type": "string"
    },
    "area": {
      "title": "Площа, кв.м/га",
      "type": "integer",
      "minimum": 1,
      "exclusiveMinimum": false
    },
    "forms_of_land_ownership": {
      "type": "array",
      "title": "Форми власності на землю.",
      "items": {
        "type": "string",
        "enum": ["державна", "приватна", "комунальна"]
      }
    },
    "co_owners": {
      "title": "Наявність співвласників",
      "type": "boolean",
      "default": false
    },
    "availability_of_utilities": {
      "title": "Наявність на ділянці інженерних мереж",
      "type": "boolean",
      "default": true
    },
    "current_use": {
      "title": "Поточне використання ",
      "type": "boolean",
      "default": true
    }
  },
  "required": [
    "region",
    "district",
    "cadastral_number",
    "area",
    "forms_of_land_ownership",
    "co_owners",
    "availability_of_utilities",
    "current_use"
  ]
}

version 002

Земельні ділянки

urn:cav:06000000-2.002
type object
properties
  • cadastralNumber
Кадастровий номер
Кадастровий номер земельної ділянки
type string
pattern ^d{10}:d{2}:d{3}:d{4}$
  • area
Площа
Площа ділянки, га
type number
minimum 0
  • ownershipForm
Форми власності
Форми власності на земельну ділянку
type array
items
type string
enum state, private, municipal, unknown
uniqueItems True
  • encumbrances
Наявність обтяжень
Інформація про наявність обтяжень на земельну ділянку
type array
items
type string
enum arrest, collateral, restraintsOnAlienation, otherEncumbrances, noEncumbrances
uniqueItems True
  • jointOwnership
Наявність співвласників
Наявність співвласників земельної ділянки
type boolean
  • utilitiesAvailability
Наявність інженерних мереж
Наявність на земельній ділянці інженерних мереж
type boolean
  • inUse
Поточне використання
Чи використовується земельна ділянка в даний момент?
type boolean
additionalProperties False
definitions

In jsonschema format:

{
   "definitions":{  },
   "additionalProperties":false,
   "id":"urn:cav:06000000-2.002",
   "title":"Земельні ділянки",
   "type":"object",
   "properties":{
      "cadastralNumber":{
         "title":"Кадастровий номер",
         "type":"string",
         "pattern":"^\\d{10}:\\d{2}:\\d{3}:\\d{4}$",
         "description":"Кадастровий номер земельної ділянки"
      },
      "area":{
         "title":"Площа",
         "type":"number",
         "minimum":0,
         "description":"Площа ділянки, га"
      },
      "ownershipForm":{
         "type":"array",
         "title":"Форми власності",
         "uniqueItems":true,
         "description":"Форми власності на земельну ділянку",
         "items":{
            "type":"string",
            "enum":[
               "state",
               "private",
               "municipal",
               "unknown"
            ]
         }
      },
      "encumbrances":{
         "type":"array",
         "title":"Наявність обтяжень",
         "uniqueItems":true,
         "description":"Інформація про наявність обтяжень на земельну ділянку",
         "items":{
            "type":"string",
            "enum":[
               "arrest",
               "collateral",
               "restraintsOnAlienation",
               "otherEncumbrances",
               "noEncumbrances"
            ]
         }
      },
      "jointOwnership":{
         "title":"Наявність співвласників",
         "type":"boolean",
         "description":"Наявність співвласників земельної ділянки"
      },
      "utilitiesAvailability":{
         "title":"Наявність інженерних мереж",
         "type":"boolean",
         "description":"Наявність на земельній ділянці інженерних мереж"
      },
      "inUse":{
         "title":"Поточне використання",
         "description":"Чи використовується земельна ділянка в даний момент?",
         "type":"boolean"
      }
   },
   "required":[
      "area"
   ]
}