changedInput schema / properties / count / description
Previous value: -"Количество"New value: +"Кол-во на странице (макс 100)"
addedInput schema / properties / mine
Added value: +{
+ "description": "Только вакансии, где я участник",
+ "type": "boolean"
+}
addedInput schema / properties / page
Added value: +{
+ "default": 1,
+ "description": "Номер страницы (с 1)",
+ "minimum": 1,
+ "type": "integer"
+}
addedInput schema / properties / raw
Added value: +{
+ "description": "Вернуть полный сырой ответ без курирования",
+ "type": "boolean"
+}
addedInput schema / properties / state
Added value: +{
+ "description": "Фильтр по состоянию (альтернатива opened)",
+ "enum": [
+ "OPEN",
+ "CLOSED",
+ "HOLD"
+ ],
+ "type": "string"
+}
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "properties": {
+ "count": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "items": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "company": {
+ "anyOf": [
+ {
+ "type": [
+ "string",
+ "number"
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "created": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "type": "number"
+ },
+ "money": {
+ "$ref": "#/properties/items/items/properties/company"
+ },
+ "position": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "priority": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "state": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "next_page_cursor": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "page": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "total": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "total_items": {
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+}