This file contains hidden or 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
<script type="text/javascript" src="https://www.proudandblack.com/js/allyproudandblack.js"></script> | |
<script> | |
AllyBadge.init({layout:1, theme:'dark'}) | |
</script> |
This file contains hidden or 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
<script type="text/javascript" src="https://www.proudandblack.com/js/proudandblack.js"></script> | |
<script> | |
ProudAndBlackBadge.init({layout:1, theme:'dark'}) | |
</script> |
This file contains hidden or 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
"relatedCodebase": { | |
"type": "array", | |
"description": "An array of forked, cloned, or other otherwise reused source code repositories.", | |
"items": { | |
"type": "object", | |
"properties": { | |
"codeName": { | |
"type": "string", | |
"description": "The name of the code repository, project, library or release." | |
}, |
This file contains hidden or 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
--- sample_code.json 2017-07-12 16:22:02.000000000 -0400 | |
+++ draftcodegovschema.json 2017-07-14 16:20:36.000000000 -0400 | |
@@ -1,49 +1,147 @@ | |
{ | |
- "version":"1.0.1", | |
- "agency": "DOABC", | |
- "projects": [ | |
- { | |
- "name": "mygov", | |
- "organization": "XYZ Department", |
This file contains hidden or 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
{ | |
"agencyAcronym": "FAKE1", | |
"projects": [ | |
{ | |
"vcs": "git", | |
"repoPath": "https://github.com/presidential-innovation-fellows/mygov", | |
"repoName": "mygov", | |
"repoID": "5518578", | |
"projectURL": null, |
This file contains hidden or 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
voterConversation = new Conversation(); | |
function RunConversation(voterConversation) | |
{ | |
int challengenumber=0; | |
int questionnumber=0; | |
int calloutnumber=0; | |
print(“Hi “+voterConversation->ID+ “I can help you register to vote. I just need to ask you” + voterConversation->Complexity + “questions. Is that OK?”); |
This file contains hidden or 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
class Conversation | |
{ | |
public integer PromptID; | |
public string Prompt; | |
private integer InquirerID; | |
public array (string) Challenges; | |
public array (string) Questions; | |
public array (string) Callout; | |
public string Cavalry; | |
public integer Complexity; |