Created
May 15, 2019 23:04
-
-
Save ColinMaudry/3409fb4b865ad18d9917d98f5325334c to your computer and use it in GitHub Desktop.
Test OCDS extension
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": { | |
"en": "Contact point identifier", | |
"fr": "Identifiant du point de contact", | |
"es": "identificación del punto de contacto" | |
}, | |
"description": { | |
"en": "Addition of an identifier to the ContactPoint block", | |
"fr": "Ajout d'un indentifiant au bloc ContactPoint", | |
"es": "Adicición de una identificación al objeto ContactPoint" | |
}, | |
"documentationUrl": { | |
"en": "https://github.com/ColinMaudry/ContactPoint_identifier_extension_template", | |
"fr": "https://github.com/ColinMaudry/ContactPoint_identifier_extension_template", | |
"es": "https://github.com/ColinMaudry/ContactPoint_identifier_extension_template" | |
}, | |
"schemas": [ | |
"release-schema.json" | |
], | |
"codelists": [], | |
"compatibility": [ | |
"1.1" | |
], | |
"dependencies": [] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"definitions": { | |
"ContactPoint": { | |
"properties": { | |
"identifier": { | |
"title": "Identifier", | |
"description": "The organization that is the contact point for the party.", | |
"type": "object", | |
"$ref": "#/definitions/OrganizationReference" | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment