Commit 94f4a891 authored by Carson, Audrey's avatar Carson, Audrey
Browse files

changes

parent e994d537
Loading
Loading
Loading
Loading
+11 −5
Original line number Diff line number Diff line
@@ -13,16 +13,16 @@
            "type": "string"
        },
        "email": {
            "$ref": "#/$defs/email"
            "$ref": "email.json"
        },
        "phone": {
            "$ref": "#/$defs/phone"
            "$ref": "phone.json"
        },
        "profile": {
            "type": "string"
        },
        "division": {
            "$ref": "#/$defs/Division"
            "$ref": "Division.json"
        }
    },
    "required": [
@@ -36,13 +36,19 @@
    "$defs": {
        "email": {
            "type": "string",
            "pattern": ".+@.+\\..+"
            "pattern": ".+@.+\\..+",
            "$schema": "https://json-schema.org/draft/2020-12/schema",
            "$id": "email.json"
        },
        "phone": {
            "type": "string",
            "pattern": "^[0-9]{3}[.][0-9]{3}[.][0-9]{4}$"
            "pattern": "^[0-9]{3}[.][0-9]{3}[.][0-9]{4}$",
            "$schema": "https://json-schema.org/draft/2020-12/schema",
            "$id": "phone.json"
        },
        "Division": {
            "$schema": "https://json-schema.org/draft/2020-12/schema",
            "$id": "Division.json",
            "type": "string",
            "enum": [
                "Cyber Resilience and Intelligence",
+6 −2
Original line number Diff line number Diff line
@@ -38,13 +38,13 @@
        "keywords": {
            "type": "array",
            "items": {
                "$ref": "#/$defs/Keyword"
                "$ref": "Keyword.json"
            }
        },
        "technology": {
            "type": "array",
            "items": {
                "$ref": "#/$defs/Technology"
                "$ref": "Technology.json"
            }
        }
    },
@@ -56,6 +56,8 @@
    ],
    "$defs": {
        "Keyword": {
            "$schema": "https://json-schema.org/draft/2020-12/schema",
            "$id": "Keyword.json",
            "type": "string",
            "enum": [
                "artificial-intelligence",
@@ -71,6 +73,8 @@
            ]
        },
        "Technology": {
            "$schema": "https://json-schema.org/draft/2020-12/schema",
            "$id": "Technology.json",
            "type": "string",
            "enum": [
                "conda:gdal",