|
| 1 | +{ |
| 2 | + "$comment": "This file is autogenerated, do not edit manually, see https://github.com/SAP/abap-file-formats for more information.", |
| 3 | + "$schema": "https://json-schema.org/draft/2020-12/schema", |
| 4 | + "$id": "https://github.com/SAP/abap-file-formats/blob/main/file-formats/dcls/dcls-v1.json", |
| 5 | + "title": "ABAP Data Control Language Source", |
| 6 | + "description": "Attributes of the Data Control Language Source", |
| 7 | + "type": "object", |
| 8 | + "properties": { |
| 9 | + "formatVersion": { |
| 10 | + "title": "ABAP File Format Version", |
| 11 | + "description": "The ABAP file format version", |
| 12 | + "type": "string", |
| 13 | + "const": "1" |
| 14 | + }, |
| 15 | + "header": { |
| 16 | + "title": "Header", |
| 17 | + "description": "Header", |
| 18 | + "type": "object", |
| 19 | + "properties": { |
| 20 | + "description": { |
| 21 | + "title": "Description", |
| 22 | + "description": "Description of the ABAP object", |
| 23 | + "type": "string", |
| 24 | + "maxLength": 60 |
| 25 | + }, |
| 26 | + "originalLanguage": { |
| 27 | + "title": "Original Language", |
| 28 | + "description": "Original language of the ABAP object", |
| 29 | + "type": "string", |
| 30 | + "minLength": 2 |
| 31 | + }, |
| 32 | + "abapLanguageVersion": { |
| 33 | + "title": "ABAP Language Version", |
| 34 | + "description": "ABAP language version", |
| 35 | + "type": "string", |
| 36 | + "enum": [ |
| 37 | + "standard", |
| 38 | + "keyUser", |
| 39 | + "cloudDevelopment" |
| 40 | + ], |
| 41 | + "enumTitles": [ |
| 42 | + "Standard", |
| 43 | + "ABAP for Key Users", |
| 44 | + "ABAP Cloud Development" |
| 45 | + ], |
| 46 | + "enumDescriptions": [ |
| 47 | + "Standard", |
| 48 | + "ABAP for key user extensibility", |
| 49 | + "ABAP cloud development" |
| 50 | + ], |
| 51 | + "default": "standard" |
| 52 | + } |
| 53 | + }, |
| 54 | + "additionalProperties": false, |
| 55 | + "required": [ |
| 56 | + "description", |
| 57 | + "originalLanguage" |
| 58 | + ] |
| 59 | + } |
| 60 | + }, |
| 61 | + "additionalProperties": false, |
| 62 | + "required": [ |
| 63 | + "formatVersion", |
| 64 | + "header" |
| 65 | + ] |
| 66 | +} |
0 commit comments