|
| 1 | +{ |
| 2 | + "$schema": "http://json-schema.org/draft-07/schema#", |
| 3 | + "$id": "https://www.schemastore.org/evolving-resolutive-process-notation.json", |
| 4 | + "title": "evolving resolutive process notation", |
| 5 | + "additionalProperties": true, |
| 6 | + "properties": { |
| 7 | + "type": { |
| 8 | + "type": "object", |
| 9 | + "additionalProperties": true, |
| 10 | + "properties": { |
| 11 | + "name": { "type": "string", "description": "Standard name" }, |
| 12 | + "version": { "$ref": "#/definitions/semver" } |
| 13 | + }, |
| 14 | + "required": ["name", "version"] |
| 15 | + }, |
| 16 | + "content": { "$ref": "#/definitions/contentObject" } |
| 17 | + }, |
| 18 | + "type": "object", |
| 19 | + |
| 20 | + "definitions": { |
| 21 | + "contentObject": { |
| 22 | + "type": "object", |
| 23 | + "properties": { |
| 24 | + "link": { |
| 25 | + "type": ["string", "null"], |
| 26 | + "format": "uri", |
| 27 | + "description": "Where to gather info. If exists, other properties are ignored" |
| 28 | + }, |
| 29 | + "name": { "type": "string" }, |
| 30 | + "version": { "$ref": "#/definitions/semver" }, |
| 31 | + "essence": { |
| 32 | + "type": "object", |
| 33 | + "additionalProperties": true, |
| 34 | + "properties": { |
| 35 | + "contradiction": { |
| 36 | + "type": "object", |
| 37 | + "additionalProperties": true, |
| 38 | + "properties": { |
| 39 | + "fundamental": { |
| 40 | + "type": "object", |
| 41 | + "additionalProperties": true, |
| 42 | + "properties": { |
| 43 | + "thesis": { |
| 44 | + "type": "string", |
| 45 | + "description": "What we have in reality" |
| 46 | + }, |
| 47 | + "antithesis": { |
| 48 | + "type": "string", |
| 49 | + "description": "Why reality is not enough" |
| 50 | + } |
| 51 | + }, |
| 52 | + "description": "Construction of contradiction" |
| 53 | + }, |
| 54 | + "space": { |
| 55 | + "type": "object", |
| 56 | + "additionalProperties": true, |
| 57 | + "properties": { |
| 58 | + "space": { "type": "string" }, |
| 59 | + "limitations": { |
| 60 | + "type": "array", |
| 61 | + "items": { "type": "string" } |
| 62 | + }, |
| 63 | + "actors": { |
| 64 | + "type": "array", |
| 65 | + "items": { "type": "string" } |
| 66 | + } |
| 67 | + }, |
| 68 | + "description": "Where is the problem and where can we act" |
| 69 | + }, |
| 70 | + "tradeoff": { |
| 71 | + "type": "array", |
| 72 | + "items": { "type": "string" }, |
| 73 | + "description": "Limits to make path curved for solving problem" |
| 74 | + }, |
| 75 | + "resources": { |
| 76 | + "type": "array", |
| 77 | + "items": { "type": "string" }, |
| 78 | + "description": "What we have before solving problem" |
| 79 | + } |
| 80 | + }, |
| 81 | + "description": "Why we have to create this object" |
| 82 | + }, |
| 83 | + "synthesis": { |
| 84 | + "type": "object", |
| 85 | + "additionalProperties": true, |
| 86 | + "properties": { |
| 87 | + "fundamental": { |
| 88 | + "type": "string", |
| 89 | + "description": "Common solution for contradiction" |
| 90 | + }, |
| 91 | + "resources": { |
| 92 | + "type": "array", |
| 93 | + "items": { "type": "string" }, |
| 94 | + "description": "What we need to realize solution" |
| 95 | + }, |
| 96 | + "advantages": { |
| 97 | + "type": "array", |
| 98 | + "items": { "type": "string" }, |
| 99 | + "description": "What else we will get from solution beside problem solving" |
| 100 | + } |
| 101 | + }, |
| 102 | + "description": "How to solve main problem" |
| 103 | + }, |
| 104 | + "realization": { |
| 105 | + "type": "object", |
| 106 | + "additionalProperties": true, |
| 107 | + "properties": { |
| 108 | + "input": { |
| 109 | + "type": "array", |
| 110 | + "items": { "$ref": "#/definitions/commonObject" }, |
| 111 | + "description": "What we have to get from outer space for sustainable functionality" |
| 112 | + }, |
| 113 | + "output": { |
| 114 | + "type": "array", |
| 115 | + "items": { "$ref": "#/definitions/commonObject" }, |
| 116 | + "description": "What we produce" |
| 117 | + }, |
| 118 | + "resources": { |
| 119 | + "type": "array", |
| 120 | + "items": { "$ref": "#/definitions/commonObject" }, |
| 121 | + "description": "Our manipulated objects" |
| 122 | + }, |
| 123 | + "value": { |
| 124 | + "type": "array", |
| 125 | + "items": { "$ref": "#/definitions/commonObject" }, |
| 126 | + "description": "What we produce for main purpose or valuable to outer external world" |
| 127 | + }, |
| 128 | + "commonDescription": { |
| 129 | + "type": "string", |
| 130 | + "description": "How it works" |
| 131 | + } |
| 132 | + }, |
| 133 | + "description": "How main object was solved" |
| 134 | + } |
| 135 | + }, |
| 136 | + "description": "Main description" |
| 137 | + }, |
| 138 | + "timing": { |
| 139 | + "type": "object", |
| 140 | + "additionalProperties": true, |
| 141 | + "properties": { |
| 142 | + "start": { "type": ["string", "null"], "format": "date-time" }, |
| 143 | + "end": { "type": ["string", "null"], "format": "date-time" }, |
| 144 | + "impactPercent": { |
| 145 | + "$ref": "#/definitions/percent", |
| 146 | + "description": "How much this version affects reality versus old ones" |
| 147 | + }, |
| 148 | + "authors": { |
| 149 | + "type": "array", |
| 150 | + "items": { "$ref": "#/definitions/person" }, |
| 151 | + "description": "Who did it" |
| 152 | + }, |
| 153 | + "source": { |
| 154 | + "type": "array", |
| 155 | + "items": { "type": "string" }, |
| 156 | + "description": "What is the reason of changing" |
| 157 | + } |
| 158 | + }, |
| 159 | + "description": "Time gap of object activity with authors and source of changing" |
| 160 | + }, |
| 161 | + "content": { |
| 162 | + "type": "array", |
| 163 | + "items": { "$ref": "#/definitions/contentObject" }, |
| 164 | + "description": "Sub level objects" |
| 165 | + }, |
| 166 | + "history": { |
| 167 | + "type": "array", |
| 168 | + "items": { "$ref": "#/definitions/contentObject" }, |
| 169 | + "description": "Old versions of object with only changed properties" |
| 170 | + } |
| 171 | + }, |
| 172 | + "description": "Main object for notation" |
| 173 | + }, |
| 174 | + "commonObject": { |
| 175 | + "type": "object", |
| 176 | + "additionalProperties": true, |
| 177 | + "properties": { |
| 178 | + "name": { "type": "string" }, |
| 179 | + "type": { |
| 180 | + "$ref": "#/definitions/propertyType" |
| 181 | + }, |
| 182 | + "describe": { "type": "string" } |
| 183 | + }, |
| 184 | + "description": "Common object for various reality flashes" |
| 185 | + }, |
| 186 | + "semver": { |
| 187 | + "type": "string", |
| 188 | + "pattern": "^\\d+\\.\\d+\\.\\d+$", |
| 189 | + "description": "Semantic version - major.minor.patch" |
| 190 | + }, |
| 191 | + "propertyType": { |
| 192 | + "type": "string", |
| 193 | + "description": "Type describes possible operations on property" |
| 194 | + }, |
| 195 | + "percent": { |
| 196 | + "type": "number", |
| 197 | + "minimum": 0, |
| 198 | + "maximum": 100, |
| 199 | + "description": "Percent value" |
| 200 | + }, |
| 201 | + "person": { |
| 202 | + "type": "object", |
| 203 | + "additionalProperties": true, |
| 204 | + "properties": { |
| 205 | + "name": { "type": "string" }, |
| 206 | + "impactPercent": { "$ref": "#/definitions/percent" }, |
| 207 | + "position": { "type": "string", "description": "Role in organization" }, |
| 208 | + "comment": { "type": "string" } |
| 209 | + }, |
| 210 | + "description": "Person description" |
| 211 | + } |
| 212 | + } |
| 213 | +} |
0 commit comments