"Fossies" - the Fresh Open Source Software Archive

Member "angular-cli-15.2.4/tests/angular_devkit/core/json/schema/serializers/0.schema.json" (16 Mar 2023, 305 Bytes) of package /linux/www/angular-cli-15.2.4.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) JSON source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 {
    2   "title": "Person",
    3   "type": "object",
    4   "properties": {
    5     "firstName": {
    6       "type": "string"
    7     },
    8     "lastName": {
    9       "type": "string"
   10     },
   11     "age": {
   12       "description": "Age in years",
   13       "type": "integer",
   14       "minimum": 0
   15     }
   16   },
   17   "required": ["firstName", "lastName"]
   18 }