Created
January 27, 2021 16:27
-
-
Save om2c0de/cdc753a4b89140dae6c12cf830662f54 to your computer and use it in GitHub Desktop.
attrs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"definitions": {}, | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"$id": "http://example.com/root.json", | |
"type": ["object", "string"], | |
"title": "rootSchema", | |
"required": [ | |
"№ скважины" | |
], | |
"properties": { | |
"Характер работы": { | |
"type": ["string", "null"], | |
"enum": ["НЕФ", "Переведена на другой объект", "НАГ"] | |
}, | |
"№ скважины": { | |
"type": "string" | |
}, | |
"Дата": { | |
"type": "string", | |
"format": "date" | |
}, | |
"Добыча нефти за посл.месяц, т": { | |
"type": ["number", "null"], | |
"multipleOf": 1.0 | |
}, | |
"Координата X": { | |
"type": ["integer", "null"] | |
}, | |
"Координата Y": { | |
"type": ["integer", "null"] | |
}, | |
"Координата забоя Х (по траектории)": { | |
"type": ["integer", "null"] | |
}, | |
"Координата забоя Y (по траектории)": { | |
"type": ["integer", "null"] | |
}, | |
"Координата забоя Х": { | |
"type": ["integer", "null"] | |
}, | |
"Координата забоя Y": { | |
"type": ["integer", "null"] | |
}, | |
"Координата устья X": { | |
"type": ["integer", "null"] | |
}, | |
"Координата устья Y": { | |
"type": ["integer", "null"] | |
}, | |
"Абсолютная вертикальная глубина от уровня моря (TVDSS)": { | |
"type": ["integer", "null"] | |
}, | |
"Альтитуда": { | |
"type": ["integer", "null"] | |
}, | |
"Глубина скважины (Z)": { | |
"type": ["integer", "null"] | |
}, | |
"Дата начала бурения": { | |
"type": ["string", "null"] | |
}, | |
"Двойное время пробега (TWT)": { | |
"type": ["integer", "null"] | |
}, | |
"Долгота": { | |
"type": ["string", "null"] | |
}, | |
"Широта": { | |
"type": ["string", "null"] | |
}, | |
"Единый идентификатор скважины (UWI)": { | |
"type": ["string", "null"] | |
}, | |
"Измеренная глубина по стволу скважины (MD)": { | |
"type": ["integer", "null"] | |
}, | |
"Имя скважины": { | |
"type": ["string", "null"] | |
}, | |
"Максимальный наклон скважины (INCmax)": { | |
"type": ["integer", "null"] | |
}, | |
"Оператор": { | |
"type": ["string", "null"] | |
}, | |
"Положение по оси Х": { | |
"type": ["integer", "null"] | |
}, | |
"Положение по оси Y": { | |
"type": ["integer", "null"] | |
}, | |
"Символ скважины": { | |
"type": ["string", "null"] | |
}, | |
"Стоимость (Cost)": { | |
"type": ["integer", "null"] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment