diff --git a/.github/workflows/rubocop.yml b/.github/workflows/rubocop.yml new file mode 100644 index 0000000..81e0ef3 --- /dev/null +++ b/.github/workflows/rubocop.yml @@ -0,0 +1,13 @@ +name: Rubocop +on: [push, pull_request] +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: 2.7 + bundler-cache: true + - run: bundle exec rubocop \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..481a56d --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,17 @@ +name: Tests +on: [push, pull_request] +jobs: + test: + runs-on: ubuntu-latest + name: test + steps: + - uses: actions/checkout@v3 + - name: Install Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: 2.7 + bundler-cache: true + - name: Run Tests + run: | + bundle install + bundle exec rake spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..585d680 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.cache +data +.DS_Store + + diff --git a/.rubocop.yml b/.rubocop.yml new file mode 100644 index 0000000..8a6ab34 --- /dev/null +++ b/.rubocop.yml @@ -0,0 +1,31 @@ +inherit_from: .rubocop_todo.yml + +require: + - rubocop-rake + - rubocop-rspec + +AllCops: + TargetRubyVersion: 2.7 + NewCops: enable + DisplayCopNames: true + +Metrics/BlockLength: + Enabled: false + +Metrics/MethodLength: + Enabled: false + +Metrics/AbcSize: + Enabled: false + +Layout/LineLength: + Enabled: false + +Style/Documentation: + Enabled: false + +Style/GlobalVars: + Enabled: false + +Style/MixinUsage: + Enabled: false \ No newline at end of file diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml new file mode 100644 index 0000000..ad7ff91 --- /dev/null +++ b/.rubocop_todo.yml @@ -0,0 +1,106 @@ +# This configuration was generated by +# `rubocop --auto-gen-config` +# on 2022-10-12 19:22:42 UTC using RuboCop version 1.36.0. +# The point is for the user to remove these configuration records +# one by one as the offenses are removed from the code base. +# Note that changes in the inspected code, or installation of new +# versions of RuboCop, may require this file to be generated again. + +# Offense count: 16 +# Configuration parameters: AllowComments, AllowEmptyLambdas. +Lint/EmptyBlock: + Enabled: false + +# Offense count: 1 +# This cop supports unsafe autocorrection (--autocorrect-all). +Lint/NonDeterministicRequireOrder: + Exclude: + - 'spec/spec_helper.rb' + +# Offense count: 1 +Lint/ShadowingOuterLocalVariable: + Exclude: + - 'bin/project' + +# Offense count: 1 +# Configuration parameters: Prefixes, AllowedPatterns. +# Prefixes: when, with, without +RSpec/ContextWording: + Exclude: + - 'spec/support/command_line.rb' + +# Offense count: 7 +# Configuration parameters: IgnoredMetadata. +RSpec/DescribeClass: + Exclude: + - '**/spec/features/**/*' + - '**/spec/requests/**/*' + - '**/spec/routing/**/*' + - '**/spec/system/**/*' + - '**/spec/views/**/*' + - 'spec/project/commands/contributors_spec.rb' + - 'spec/project/commands/issues_spec.rb' + - 'spec/project/commands/members_spec.rb' + - 'spec/project/commands/org_spec.rb' + - 'spec/project/commands/pr_spec.rb' + - 'spec/project/commands/repos_spec.rb' + - 'spec/project/project_spec.rb' + +# Offense count: 1 +# This cop supports unsafe autocorrection (--autocorrect-all). +# Configuration parameters: SkipBlocks, EnforcedStyle. +# SupportedStyles: described_class, explicit +RSpec/DescribedClass: + Exclude: + - 'spec/github/organization_spec.rb' + +# Offense count: 16 +# This cop supports unsafe autocorrection (--autocorrect-all). +RSpec/EmptyExampleGroup: + Enabled: false + +# Offense count: 3 +# Configuration parameters: CountAsOne. +RSpec/ExampleLength: + Max: 6 + +# Offense count: 12 +# Configuration parameters: Include, CustomTransform, IgnoreMethods, SpecSuffixOnly. +# Include: **/*_spec*rb*, **/spec/**/* +RSpec/FilePath: + Exclude: + - 'spec/github/contributor_spec.rb' + - 'spec/github/contributors_spec.rb' + - 'spec/github/data_spec.rb' + - 'spec/github/issue_spec.rb' + - 'spec/github/issues_spec.rb' + - 'spec/github/organization_spec.rb' + - 'spec/github/pull_request_spec.rb' + - 'spec/github/pull_requests_spec.rb' + - 'spec/github/rate_limited_spec.rb' + - 'spec/github/repos_spec.rb' + - 'spec/github/user_spec.rb' + - 'spec/github/users_spec.rb' + +# Offense count: 1 +# Configuration parameters: IgnoreSharedExamples. +RSpec/NamedSubject: + Exclude: + - 'spec/github/organization_spec.rb' + +# Offense count: 2 +# This cop supports unsafe autocorrection (--autocorrect-all). +# Configuration parameters: EnforcedStyle. +# SupportedStyles: always, always_true, never +Style/FrozenStringLiteralComment: + Exclude: + - 'spec/support/command_line.rb' + - 'spec/support/github.rb' + +# Offense count: 1 +# This cop supports unsafe autocorrection (--autocorrect-all). +# Configuration parameters: AllowMethodsWithArguments, AllowedMethods, AllowedPatterns, IgnoredMethods, AllowComments. +# AllowedMethods: respond_to, define_method +Style/SymbolProc: + Exclude: + - 'bin/commands/issues.rb' diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 5b627cf..7129188 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -1,4 +1,22 @@ -## Code of Conduct -This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). -For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact -opensource-codeofconduct@amazon.com with any additional questions or comments. +This code of conduct applies to all spaces provided by the OpenSource project including in code, documentation, issue trackers, mailing lists, chat channels, wikis, blogs, social media and any other communication channels used by the project. + +**Our open source communities endeavor to:** + +* Be Inclusive: We are committed to being a community where everyone can join and contribute. This means using inclusive and welcoming language. +* Be Welcoming: We are committed to maintaining a safe space for everyone to be able to contribute. +* Be Respectful: We are committed to encouraging differing viewpoints, accepting constructive criticism and work collaboratively towards decisions that help the project grow. Disrespectful and unacceptable behavior will not be tolerated. +* Be Collaborative: We are committed to supporting what is best for our community and users. When we build anything for the benefit of the project, we should document the work we do and communicate to others on how this affects their work. + +**Our Responsibility. As contributors, members, or bystanders we each individually have the responsibility to behave professionally and respectfully at all times. Disrespectful and unacceptable behaviors include, but are not limited to:** + +* The use of violent threats, abusive, discriminatory, or derogatory language; +* Offensive comments related to gender, gender identity and expression, sexual orientation, disability, mental illness, race, political or religious affiliation; +* Posting of sexually explicit or violent content; +* The use of sexualized language and unwelcome sexual attention or advances; +* Public or private harassment of any kind; +* Publishing private information, such as physical or electronic address, without permission; +* Other conduct which could reasonably be considered inappropriate in a professional setting; +* Advocating for or encouraging any of the above behaviors. +* Enforcement and Reporting Code of Conduct Issues: + +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported. [Contact us](mailto:opensource-codeofconduct@amazon.com). All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c4b6a1c..c970f9d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,59 +1,4 @@ -# Contributing Guidelines +## Contributing to this Project -Thank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional -documentation, we greatly value feedback and contributions from our community. - -Please read through this document before submitting any issues or pull requests to ensure we have all the necessary -information to effectively respond to your bug report or contribution. - - -## Reporting Bugs/Feature Requests - -We welcome you to use the GitHub issue tracker to report bugs or suggest features. - -When filing an issue, please check existing open, or recently closed, issues to make sure somebody else hasn't already -reported the issue. Please try to include as much information as you can. Details like these are incredibly useful: - -* A reproducible test case or series of steps -* The version of our code being used -* Any modifications you've made relevant to the bug -* Anything unusual about your environment or deployment - - -## Contributing via Pull Requests -Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that: - -1. You are working against the latest source on the *main* branch. -2. You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already. -3. You open an issue to discuss any significant work - we would hate for your time to be wasted. - -To send us a pull request, please: - -1. Fork the repository. -2. Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change. -3. Ensure local tests pass. -4. Commit to your fork using clear commit messages. -5. Send us a pull request, answering any default questions in the pull request interface. -6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation. - -GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and -[creating a pull request](https://help.github.com/articles/creating-a-pull-request/). - - -## Finding contributions to work on -Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any 'help wanted' issues is a great place to start. - - -## Code of Conduct -This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). -For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact -opensource-codeofconduct@amazon.com with any additional questions or comments. - - -## Security issue notifications -If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue. - - -## Licensing - -See the [LICENSE](LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution. +OpenSearch is a community project that is built and maintained by people just like **you**. +[This document](https://github.com/opensearch-project/.github/blob/main/CONTRIBUTING.md) explains how you can contribute to this and related projects. \ No newline at end of file diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..8129092 --- /dev/null +++ b/Gemfile @@ -0,0 +1,23 @@ +# frozen_string_literal: true + +source 'http://rubygems.org' + +gem 'activesupport' +gem 'dotiw' +gem 'faraday-http-cache' +gem 'faraday-retry' +gem 'gli' +gem 'json' +gem 'octokit' +gem 'rubocop' +gem 'rubocop-performance' +gem 'rubocop-rake' +gem 'rubocop-rspec' +gem 'ruby-progressbar' + +group :test do + gem 'rake', '~> 13' + gem 'rspec' + gem 'vcr' + gem 'webmock' +end diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..2d561ea --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,115 @@ +GEM + remote: http://rubygems.org/ + specs: + activesupport (6.1.7) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 1.6, < 2) + minitest (>= 5.1) + tzinfo (~> 2.0) + zeitwerk (~> 2.3) + addressable (2.8.1) + public_suffix (>= 2.0.2, < 6.0) + ast (2.4.2) + concurrent-ruby (1.1.10) + crack (0.4.5) + rexml + diff-lcs (1.5.0) + dotiw (5.3.3) + activesupport + i18n + faraday (2.6.0) + faraday-net_http (>= 2.0, < 3.1) + ruby2_keywords (>= 0.0.4) + faraday-http-cache (2.4.1) + faraday (>= 0.8) + faraday-net_http (3.0.1) + faraday-retry (2.0.0) + faraday (~> 2.0) + gli (2.21.0) + hashdiff (1.0.1) + i18n (1.12.0) + concurrent-ruby (~> 1.0) + json (2.6.2) + minitest (5.16.3) + octokit (4.25.1) + faraday (>= 1, < 3) + sawyer (~> 0.9) + parallel (1.22.1) + parser (3.1.2.1) + ast (~> 2.4.1) + public_suffix (5.0.0) + rainbow (3.1.1) + rake (13.0.6) + regexp_parser (2.6.0) + rexml (3.2.5) + rspec (3.11.0) + rspec-core (~> 3.11.0) + rspec-expectations (~> 3.11.0) + rspec-mocks (~> 3.11.0) + rspec-core (3.11.0) + rspec-support (~> 3.11.0) + rspec-expectations (3.11.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.11.0) + rspec-mocks (3.11.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.11.0) + rspec-support (3.11.1) + rubocop (1.36.0) + json (~> 2.3) + parallel (~> 1.10) + parser (>= 3.1.2.1) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.20.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 1.4.0, < 3.0) + rubocop-ast (1.21.0) + parser (>= 3.1.1.0) + rubocop-performance (1.15.0) + rubocop (>= 1.7.0, < 2.0) + rubocop-ast (>= 0.4.0) + rubocop-rake (0.6.0) + rubocop (~> 1.0) + rubocop-rspec (2.13.2) + rubocop (~> 1.33) + ruby-progressbar (1.11.0) + ruby2_keywords (0.0.5) + sawyer (0.9.2) + addressable (>= 2.3.5) + faraday (>= 0.17.3, < 3) + tzinfo (2.0.5) + concurrent-ruby (~> 1.0) + unicode-display_width (2.3.0) + vcr (6.1.0) + webmock (3.14.0) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) + zeitwerk (2.6.1) + +PLATFORMS + ruby + x86_64-darwin-18 + +DEPENDENCIES + activesupport + dotiw + faraday-http-cache + faraday-retry + gli + json + octokit + rake (~> 13) + rspec + rubocop + rubocop-performance + rubocop-rake + rubocop-rspec + ruby-progressbar + vcr + webmock + +BUNDLED WITH + 2.3.8 diff --git a/LICENSE b/LICENSE.txt similarity index 100% rename from LICENSE rename to LICENSE.txt diff --git a/MAINTAINERS.md b/MAINTAINERS.md new file mode 100644 index 0000000..e0fb190 --- /dev/null +++ b/MAINTAINERS.md @@ -0,0 +1,7 @@ +## Maintainers + +| Maintainer | GitHub ID | Affiliation | +|------------------------|---------------------------------------------------|-------------| +| Daniel Doubrovkine | [dblock](https://github.com/dblock) | Amazon | + +[This document](https://github.com/opensearch-project/.github/blob/main/MAINTAINERS.md) explains what maintainers do in this repo, and how they should be doing it. If you're interested in contributing, see [CONTRIBUTING](CONTRIBUTING.md). \ No newline at end of file diff --git a/NOTICE b/NOTICE index 616fc58..52bb20e 100644 --- a/NOTICE +++ b/NOTICE @@ -1 +1 @@ -Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. +Copyright OpenSearch Contributors. diff --git a/README.md b/README.md index 847260c..45fa015 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,192 @@ -## My Project +- [OpenSearch Project Tools](#opensearch-project-tools) + - [Usage](#usage) + - [Global Options](#global-options) + - [Tokens](#tokens) + - [Caching](#caching) + - [Debug Logging](#debug-logging) + - [Org Info](#org-info) + - [Org Members](#org-members) + - [Sorted List of Repos](#sorted-list-of-repos) + - [Contributor Stats](#contributor-stats) + - [Contributor Lists](#contributor-lists) + - [Pull Request Stats](#pull-request-stats) + - [Issues](#issues) + - [Member Bios](#member-bios) +- [Contributing](#contributing) +- [Code of Conduct](#code-of-conduct) +- [Security](#security) +- [License](#license) +- [Copyright](#copyright) -TODO: Fill this README out! +## OpenSearch Project Tools -Be sure to: +Tools to gather stats on a GitHub organization. -* Change the title in this README -* Edit your repository description on GitHub +### Usage + +#### Global Options + +##### Tokens + +Set `GITHUB_API_TOKEN` to a personal access token (PAT) or with `--token` to avoid running into too many rate-limit requests as authenticated requests get a higher rate limit. See [GitHub rate limiting](https://docs.github.com/rest/overview/resources-in-the-rest-api#rate-limiting) for more information. + +##### Caching + +The tool will cache data into `.cache` by default for all GitHub API queries to avoid making duplicate requests. To disable caching use `--no-cache`. Run with `--debug` to display cache hits and misses. + +##### Debug Logging + +Use `--debug` to get cache logging and full stack traces if a command fails. + +#### Org Info + +``` +./bin/project org info + +url: https://api.github.com/orgs/opensearch-project +repos: 78 +``` + +You can specify a GitHub org name for all commands, including `org info`. + +``` +./bin/project --org aws org info +``` + +#### Org Members + +Shows the difference between org members and member data. + +``` +./bin/project org members +``` + +#### Sorted List of Repos + +``` +./bin/project repos list +``` + +#### Contributor Stats + +Shows most frequent contributors bucketed by members, contractors, and external. + +``` +./bin/project contributors stats + +total = 5 +members (2): + https://github.com/dlvenable: 12 + https://github.com/zelinh: 10 +contractors (3): + https://github.com/...: 4 +``` + +By default returns stats for the last full week. Specify `from` and `to` for different dates. + +``` +./bin/project contributors stats --from=2022-10-02 --to=2022-10-03 +``` + +For large organizations the default paging interval of 7 days may be too big and fail with `error: There are 1000+ PRs returned from a single query for 7 day(s), reduce --page.`. Decrease the page size. + +``` +./bin/project --org aws contributors stats --page 3 +``` + +#### Contributor Lists + +Lists human contributors. + +``` +./bin/project contributors list + +saratvemulapalli +sbcd90 +... +``` + +#### Pull Request Stats + +Shows bucketed contributions. + +``` +./bin/project prs stats + +Between 2022-10-03 and 2022-10-09, 5% of contributions (18/346) were made by 9 external contributors (9/102). + +https://github.com/opensearch-project/project-website/pull/1024: add tracetest as a partner - [@mathnogueira] +https://github.com/opensearch-project/project-website/pull/1023: Add Hyland as partner - [@aborroy] +https://github.com/opensearch-project/opensearch-php/pull/85: Unset port for SigV4Handler, fixes #84 - [@shyim] +... +``` + +By default returns stats for the last full week. Specify `from` and `to` for different dates. + +If the tool sees a new contributor, it will direct you to add aliases into [data/members.txt](data/members.txt), [data/contractors.txt](data/contractors.txt), or [data/external.txt](data/external.txt). Otherwise, it will output PRs and stats made by external contributors. The easiest way to lookup whether an account belongs to the org is with `./bin/project org members`. Commit and PR your changes to the data lists. + +Get the status since the beginning of year. + +``` +./bin/project prs stats --from=2022-01-01 +``` + +#### Issues + +Shows issues bucketed by label. + +``` +./bin/project issues labels + +enhancement: 54 +untriaged: 43 +bug: 36 +security vulnerability: 19 +v2.4.0: 12 +good first issue: 7 +hacktoberfest: 6 +autocut: 6 +... +``` + +By default returns stats for the last full week. Specify `from` and `to` for different dates. + +Find untriaged issues. + +``` +./bin/project issues untriaged --from=2021-01-01 --to=2022-10-01 +``` + +Find old issues labeled for a release. + +``` +./bin/project issues released --from=2021-01-01 --to=2022-10-01 +``` + +#### Member Bios + +Shows users in [data/users/members.txt](data/users/members.txt) that do not have some variation of org membership info in their GitHub bio. + +``` +./bin/project members check +``` + +## Contributing + +See [how to contribute to this project](CONTRIBUTING.md). + +## Code of Conduct + +This project has adopted the [Amazon Open Source Code of Conduct](CODE_OF_CONDUCT.md). For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq), or contact [opensource-codeofconduct@amazon.com](mailto:opensource-codeofconduct@amazon.com) with any additional questions or comments. ## Security -See [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) for more information. +If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public GitHub issue. ## License -This project is licensed under the Apache-2.0 License. +This project is licensed under the [Apache v2.0 License](LICENSE.txt). + +## Copyright +Copyright OpenSearch Contributors. diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..abfacee --- /dev/null +++ b/Rakefile @@ -0,0 +1,18 @@ +# frozen_string_literal: true + +require 'rubygems' +require 'bundler' + +Bundler.setup :default, :development + +require 'rspec/core' +require 'rspec/core/rake_task' + +RSpec::Core::RakeTask.new(:spec) do |spec| + spec.pattern = FileList['spec/**/*_spec.rb'] +end + +require 'rubocop/rake_task' +RuboCop::RakeTask.new + +task default: %i[spec rubocop] diff --git a/bin/commands/contributors.rb b/bin/commands/contributors.rb new file mode 100644 index 0000000..649c499 --- /dev/null +++ b/bin/commands/contributors.rb @@ -0,0 +1,31 @@ +# frozen_string_literal: true + +desc 'Data about contributors.' +command 'contributors' do |g| + g.flag [:page], desc: 'Size of page in days.', default_value: 7, type: Integer + g.flag [:from], desc: 'Start at.', default_value: Date.today.beginning_of_week.last_week + g.flag [:to], desc: 'End at.', default_value: Date.today.beginning_of_week - 1 + + g.desc 'Operate on a set of contributors.' + g.command 'list' do |c| + c.action do |_global_options, options, _args| + $org.pull_requests(options).contributors.humans.sort.uniq.each do |pr| + puts pr + end + end + end + + g.desc 'Contributor stats.' + g.command 'stats' do |c| + c.action do |_global_options, options, _args| + buckets = $org.pull_requests(options).contributors.buckets + puts "total = #{buckets.values.map(&:size).sum}" + buckets.each_pair do |bucket, logins| + puts "#{bucket} (#{logins.size}):" + logins.sort_by { |_k, v| -v }.each do |login, count| + puts " https://github.com/#{login}: #{count}" + end + end + end + end +end diff --git a/bin/commands/issues.rb b/bin/commands/issues.rb new file mode 100644 index 0000000..8d2a9a5 --- /dev/null +++ b/bin/commands/issues.rb @@ -0,0 +1,50 @@ +# frozen_string_literal: true + +desc 'Data on GitHub issues.' +command 'issue', 'issues' do |g| + g.flag [:page], desc: 'Size of page in days.', default_value: 7, type: Integer + g.flag [:from], desc: 'Start at.', default_value: Date.today.beginning_of_week.last_week + g.flag [:to], desc: 'End at.', default_value: Date.today.beginning_of_week - 1 + + g.desc 'Lists issue stats in the organization.' + g.command 'labels' do |c| + c.action do |_global_options, options, _args| + $org.issues(options).labels.take(25).each do |label, issues| + puts "#{label}: #{issues.count}" + end + end + end + + g.desc 'Finds oldest untriaged offenders.' + g.command 'untriaged' do |c| + c.action do |_global_options, options, _args| + untriaged_issues = $org.issues(options.merge(label: 'untriaged')) + puts "There are #{untriaged_issues.count} untriaged issues created between #{options[:from]} and #{options[:to]}." + puts '' + puts 'Repo counts:' + untriaged_issues.repos.each_pair do |repo, issues| + puts "#{repo}: #{issues.count}" + end + puts '' + puts 'Oldest issues:' + untriaged_issues.sort_by { |i| i.created_at }.take(25).each do |issue| + puts "#{issue}, created #{DOTIW::Methods.distance_of_time_in_words(issue.created_at, Time.now, + highest_measures: 1)} ago" + end + end + end + + g.desc 'Finds labelled for incorrect release.' + g.command 'released' do |c| + c.action do |_global_options, options, _args| + $org.issues(options).labels.each_pair do |label, issues| + next unless label.match(/v[0-9]\.[0-9]\.[0-9]*/) + + puts "#{label}: #{issues.count}" + issues.take(5).each do |issue| + puts " #{issue}" + end + end + end + end +end diff --git a/bin/commands/members.rb b/bin/commands/members.rb new file mode 100644 index 0000000..1d55935 --- /dev/null +++ b/bin/commands/members.rb @@ -0,0 +1,16 @@ +# frozen_string_literal: true + +desc 'Data about org members.' +command 'members' do |g| + g.desc 'Check GitHub affiliation information for contributors.' + g.command 'check' do |c| + c.action do |_global_options, _options, _args| + GitHub::User.wrap(GitHub::Data.members).each do |contributor| + unless contributor.member? + puts "#{contributor.login}: #{[contributor.company, + contributor.bio].compact.join(' ')}" + end + end + end + end +end diff --git a/bin/commands/org.rb b/bin/commands/org.rb new file mode 100644 index 0000000..77c7a58 --- /dev/null +++ b/bin/commands/org.rb @@ -0,0 +1,20 @@ +# frozen_string_literal: true + +desc 'Data about a GitHub organization.' +command 'org' do |g| + g.desc 'Provides basic information about the GitHub organization.' + g.command 'info' do |c| + c.action do |_global_options, _options, _args| + puts $org.info + end + end + + g.command 'members' do |c| + c.action do |_global_options, _options, _args| + puts "org: #{$org.name}" + puts "members: #{$org.members.count}" + puts "missing in data/users/members.txt: #{($org.members.logins - GitHub::Data.members).join(' ')}" + puts "no longer members: #{(GitHub::Data.members - $org.members.logins).join(' ')}" + end + end +end diff --git a/bin/commands/pr.rb b/bin/commands/pr.rb new file mode 100644 index 0000000..834b503 --- /dev/null +++ b/bin/commands/pr.rb @@ -0,0 +1,39 @@ +# frozen_string_literal: true + +desc 'Data on GitHub pull requests.' +command 'pr', 'prs' do |g| + g.flag [:page], desc: 'Size of page in days.', default_value: 7, type: Integer + g.flag [:from], desc: 'Start at.', default_value: Date.today.beginning_of_week.last_week + g.flag [:to], desc: 'End at.', default_value: Date.today.beginning_of_week - 1 + + g.desc 'Lists pull requests in the organization.' + g.command 'list' do |c| + c.action do |_global_options, options, _args| + $org.pull_requests(options).each do |pr| + puts pr + end + end + end + + g.desc 'Pull request stats.' + g.command 'stats' do |c| + c.action do |_global_options, options, _args| + prs = $org.pull_requests(options) + if prs.contributors[:unknown]&.any? + puts 'Add the following users to either data/users/members.txt, external.txt or contractors.txt and re-run.' + prs.contributors[:unknown].keys.take(10).each do |user| + puts user + system "open https://github.com/#{user}" + end + else + puts "Between #{options[:from]} and #{options[:to]}, #{prs.all_external_percent}% of contributions (#{prs.all_external.size}/#{prs.size}) were made by #{prs.contributors.all_external.size} external contributors (#{prs.contributors.all_external.size}/#{prs.contributors.humans.uniq.size})." + if prs[:external]&.size&.< 25 + puts '' + prs[:external]&.each do |pr| + puts pr + end + end + end + end + end +end diff --git a/bin/commands/repos.rb b/bin/commands/repos.rb new file mode 100644 index 0000000..1e63819 --- /dev/null +++ b/bin/commands/repos.rb @@ -0,0 +1,13 @@ +# frozen_string_literal: true + +desc 'Repos.' +command 'repos' do |g| + g.desc 'Lists repos in the organization.' + g.command 'list' do |c| + c.action do |_global_options, _options, _args| + $org.repos.sort_by(&:name).each do |repo| + puts repo.name + end + end + end +end diff --git a/bin/project b/bin/project new file mode 100755 index 0000000..1250178 --- /dev/null +++ b/bin/project @@ -0,0 +1,75 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +require 'gli' +require 'faraday-http-cache' + +include GLI::App + +program_desc 'GitHub project info tool.' + +default_command :help + +switch %i[d debug], desc: 'Enable debug-level logging.', default_value: false +switch %i[no-cache], desc: 'Disable local cache (.cache).', default_value: false + +flag [:o, 'org'], desc: 'Name of the GitHub organization.', default_value: 'opensearch-project' +flag [:t, 'token'], desc: 'Optional GitHub token.', default_value: ENV.fetch('GITHUB_API_TOKEN', nil) +flag ['vcr-cassette-name'], desc: 'Offline VCR cassette.' + +pre do |global_options, _command, _options, _args| + if global_options['vcr-cassette-name'] + require 'webmock' + WebMock.enable! + require 'vcr' + VCR.configure do |config| + config.cassette_library_dir = File.expand_path(File.join(__FILE__, '../../spec/fixtures')) + config.hook_into :webmock + config.default_cassette_options = { record: :new_episodes } + if global_options['token'] + config.filter_sensitive_data('') do + global_options['token'] + end + end + end + VCR.insert_cassette global_options['vcr-cassette-name'] + end + + Octokit.auto_paginate = true + client_options = {} + client_options = { access_token: global_options[:token] } if global_options.key?(:token) + unless global_options['no-cache'] + stack = Faraday::RackBuilder.new do |builder| + cache_store = ActiveSupport::Cache.lookup_store(:file_store, File.expand_path(File.join(__dir__, '..', '.cache'))) + logger = global_options['debug'] ? Logger.new($stdout) : nil + builder.use Faraday::HttpCache, serializer: Marshal, shared_cache: false, store: cache_store, logger: logger + builder.use Octokit::Response::RaiseError + builder.use Faraday::CacheControl + builder.adapter Faraday.default_adapter + end + Octokit.middleware = stack + end + + post do |global_options, _command, _options, _args| + VCR.eject_cassette if global_options['vcr-cassette-name'] + end + + $github = Octokit::Client.new(client_options) + $org = GitHub::Organization.new(global_options['org']) + + ENV['GLI_DEBUG'] = 'true' if global_options['debug'] + + true +end + +$LOAD_PATH.push File.expand_path(__dir__) + +require_relative '../lib/tools' +require_relative 'commands/org' +require_relative 'commands/repos' +require_relative 'commands/pr' +require_relative 'commands/contributors' +require_relative 'commands/members' +require_relative 'commands/issues' + +exit run(ARGV) diff --git a/lib/faraday/cache_control.rb b/lib/faraday/cache_control.rb new file mode 100644 index 0000000..f38508b --- /dev/null +++ b/lib/faraday/cache_control.rb @@ -0,0 +1,20 @@ +# frozen_string_literal: true + +module Faraday + class CacheControl < Faraday::Middleware + def initialize(app, *_args) + super(app) + end + + def call(env) + dup.call!(env) + end + + def call!(env) + response = @app.call(env) + # force caching for a year + response.headers['cache-control'] = 'public, max-age=31536000' + response + end + end +end diff --git a/lib/github/contributor.rb b/lib/github/contributor.rb new file mode 100644 index 0000000..84c7f54 --- /dev/null +++ b/lib/github/contributor.rb @@ -0,0 +1,29 @@ +# frozen_string_literal: true + +module GitHub + class Contributor < SimpleDelegator + include Comparable + + def <=>(other) + to_s <=> other.to_s + end + + def eql?(other) + to_s.eql?(other.to_s) + end + + def hash + to_s.hash + end + + def to_s + login + end + + def self.wrap(collection) + collection.map do |obj| + new obj + end + end + end +end diff --git a/lib/github/contributors.rb b/lib/github/contributors.rb new file mode 100644 index 0000000..d51ec57 --- /dev/null +++ b/lib/github/contributors.rb @@ -0,0 +1,76 @@ +# frozen_string_literal: true + +module GitHub + class Contributors < Array + extend GitHub::Data + + def initialize(arr) + super(Contributor.wrap(arr)) + end + + def humans + reject { |item| item.type == 'Bot' || GitHub::Data.bots.include?(item.to_s) } + end + + def members + buckets[:members] + end + + def contractors + buckets[:contractors] + end + + def external + buckets[:external] + end + + def unknown + buckets[:unknown] + end + + def all + humans + end + + def all_members + members.concat(contractors) + end + + def all_external + external + end + + def all_external_percent + ((all_external.size.to_f / all.size) * 100).to_i + end + + def self.bucket(username) + if GitHub::Data.members.include?(username.to_s) + :members + elsif GitHub::Data.contractors.include?(username.to_s) + :contractors + elsif GitHub::Data.external_users.include?(username.to_s) + :external + else + :unknown + end + end + + def [](bucket) + buckets[bucket] + end + + def buckets + @buckets ||= begin + buckets = {} + humans.each do |username| + bucket = GitHub::Contributors.bucket(username.to_s) + buckets[bucket] ||= {} + buckets[bucket][username] ||= 0 + buckets[bucket][username] += 1 + end + buckets + end + end + end +end diff --git a/lib/github/data.rb b/lib/github/data.rb new file mode 100644 index 0000000..4a9a1d1 --- /dev/null +++ b/lib/github/data.rb @@ -0,0 +1,51 @@ +# frozen_string_literal: true + +module GitHub + module Data + class << self + DATA = File.expand_path('../../data/users/', __dir__) + MEMBERS = File.expand_path('members.txt', DATA) + CONTRACTORS = File.expand_path('contractors.txt', DATA) + EXTERNAL = File.expand_path('external.txt', DATA) + BOTS = File.expand_path('bots.txt', DATA) + COMPANIES = File.expand_path('companies.txt', DATA) + + def load_list(path) + if File.exist?(path) + File.readlines(path).map(&:strip).reject(&:blank?) + else + warn "Missing #{path}, ignored. Ask @dblock where to get this data from." + [] + end + end + + def members + @members ||= load_list(MEMBERS) + end + + def contractors + @contractors ||= load_list(CONTRACTORS) + end + + def external_users + @external_users ||= load_list(EXTERNAL) + end + + def bots + @bots ||= load_list(BOTS) + end + + def companies + @companies ||= load_list(COMPANIES) + end + + def all_members + members.concat(contractors) + end + + def all_external + external + end + end + end +end diff --git a/lib/github/issue.rb b/lib/github/issue.rb new file mode 100644 index 0000000..2e62732 --- /dev/null +++ b/lib/github/issue.rb @@ -0,0 +1,19 @@ +# frozen_string_literal: true + +module GitHub + class Issue < SimpleDelegator + def short_url + html_url.split('/')[4..].join('/').gsub('/issues/', '#') + end + + def to_s + "#{html_url}: #{title} - [@#{user.login}]" + end + + def self.wrap(collection) + collection.map do |obj| + new obj + end + end + end +end diff --git a/lib/github/issues.rb b/lib/github/issues.rb new file mode 100644 index 0000000..fc1ab87 --- /dev/null +++ b/lib/github/issues.rb @@ -0,0 +1,75 @@ +# frozen_string_literal: true + +module GitHub + class Issues < Array + extend GitHub::RateLimited + + attr_reader :org + + def initialize(org, options = {}) + @org = org + super(Issues.fetch(org, options)) + end + + def labels + @labels ||= begin + all = {} + each do |issue| + issue.labels.each do |label| + all[label.name] ||= [] + all[label.name] << issue + end + end + all.sort_by { |_, v| -v.length }.to_h + end + end + + def repos + @repos ||= begin + all = {} + each do |issue| + all[issue.repository_url] ||= [] + all[issue.repository_url] << issue + end + all.sort_by { |_, v| -v.length }.to_h + end + end + + def self.fetch(org, options = {}) + issues = [] + start_at = options[:from].is_a?(String) ? Date.parse(options[:from]) : options[:from] + end_at = options[:to].is_a?(String) ? Date.parse(options[:to]) : options[:to] + days = options[:page] + pb = ProgressBar.create( + total: (((end_at - start_at) / days) + 1), + title: "Fetching issues between #{start_at} and #{end_at}" + ) + current_date = start_at + while current_date < end_at + rate_limited do + next_date = [current_date + days, end_at].min + response = $github.search_issues(query(org, options.merge(from: current_date, to: next_date)), per_page: 1000) + data = response.items + raise "There are 1000+ issues returned from a single query for #{days} day(s), reduce --page." if data.size >= 1000 + + issues.concat(data) + current_date = next_date + end + pb.increment + end + pb.finish + GitHub::Issue.wrap(issues) + end + + def self.query(org, options = {}) + [ + "org:#{org.name}", + 'is:issue', + 'is:open', + 'archived:false', + "created:#{options[:from]}..#{options[:to]}", + options.key?(:label) ? "label:\"#{options[:label]}\"" : nil + ].compact.join(' ') + end + end +end diff --git a/lib/github/organization.rb b/lib/github/organization.rb new file mode 100644 index 0000000..3b639bc --- /dev/null +++ b/lib/github/organization.rb @@ -0,0 +1,40 @@ +# frozen_string_literal: true + +module GitHub + class Organization + attr_reader :name + + def initialize(name) + @name = name + end + + def org + @org ||= $github.org(name) + end + + def repos + @repos ||= GitHub::Repos.new(self) + end + + def members + @members ||= GitHub::Users.new(self) + end + + def pull_requests(options = {}) + @pull_requests ||= GitHub::PullRequests.new(self, options) + end + + def issues(options = {}) + @issues ||= GitHub::Issues.new(self, options) + end + + def info + [ + "name: #{org.name}", + "description: #{org.description}", + "url: #{org.url}", + "repos: #{repos.count}" + ].join("\n") + end + end +end diff --git a/lib/github/pull_request.rb b/lib/github/pull_request.rb new file mode 100644 index 0000000..4397dfd --- /dev/null +++ b/lib/github/pull_request.rb @@ -0,0 +1,19 @@ +# frozen_string_literal: true + +module GitHub + class PullRequest < SimpleDelegator + def short_url + html_url.split('/')[4..].join('/').gsub('/pull/', '#') + end + + def to_s + "#{html_url}: #{title} - [@#{user.login}]" + end + + def self.wrap(collection) + collection.map do |obj| + new obj + end + end + end +end diff --git a/lib/github/pull_requests.rb b/lib/github/pull_requests.rb new file mode 100644 index 0000000..e5decd2 --- /dev/null +++ b/lib/github/pull_requests.rb @@ -0,0 +1,101 @@ +# frozen_string_literal: true + +module GitHub + class PullRequests < Array + extend GitHub::RateLimited + + attr_reader :org + + def initialize(org, options = {}) + @org = org + super(PullRequests.fetch(org, options)) + end + + def contributors + @contributors ||= GitHub::Contributors.new(map(&:user)) + end + + def members + buckets[:members] + end + + def contractors + buckets[:contractors] + end + + def external + buckets[:external] + end + + def unknown + buckets[:unknown] + end + + def [](bucket) + buckets[bucket] + end + + def all + to_a + end + + def internal + members.concat(contractors) + end + + def all_external + external + end + + def all_external_percent + ((all_external.size.to_f / all.size) * 100).to_i + end + + def buckets + @buckets ||= begin + buckets = {} + each do |pr| + next if pr.user.type == 'Bot' + + bucket = GitHub::Contributors.bucket(pr.user.login) + buckets[bucket] ||= [] + buckets[bucket] << pr + end + buckets + end + end + + def self.fetch(org, options = {}) + all_contributions = [] + start_at = options[:from].is_a?(String) ? Date.parse(options[:from]) : options[:from] + end_at = options[:to].is_a?(String) ? Date.parse(options[:to]) : options[:to] + days = options[:page] + pb = ProgressBar.create( + total: (((end_at - start_at) / days) + 1), + title: "Fetching PRs between #{start_at} and #{end_at}" + ) + current_date = start_at + while current_date < end_at + rate_limited do + next_date = [current_date + days, end_at].min + response = $github.search_issues(query(org, options.merge(from: current_date, to: next_date)), per_page: 1000) + data = response.items + raise "There are 1000+ PRs returned from a single query for #{days} day(s), reduce --page." if data.size >= 1000 + + data = data.reject do |pr| + pr.body&.start_with?('Backport ') + end + all_contributions.concat(data) + current_date = next_date + end + pb.increment + end + pb.finish + GitHub::PullRequest.wrap(all_contributions) + end + + def self.query(org, options = {}) + "org:#{org.name} state:merged is:pull-request archived:false is:closed merged:#{options[:from]}..#{options[:to]}" + end + end +end diff --git a/lib/github/rate_limited.rb b/lib/github/rate_limited.rb new file mode 100644 index 0000000..429667b --- /dev/null +++ b/lib/github/rate_limited.rb @@ -0,0 +1,16 @@ +# frozen_string_literal: true + +module GitHub + module RateLimited + def rate_limited(&_block) + suspend_s = 5 + begin + yield if block_given? + rescue Octokit::TooManyRequests + sleep suspend_s + suspend_s = [suspend_s * 2, $github.rate_limit.resets_in + 1].min + retry + end + end + end +end diff --git a/lib/github/repos.rb b/lib/github/repos.rb new file mode 100644 index 0000000..ed026dc --- /dev/null +++ b/lib/github/repos.rb @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +module GitHub + class Repos < Array + attr_reader :org + + def initialize(org) + @org = org + super($github.org_repos(org.name)) + end + end +end diff --git a/lib/github/user.rb b/lib/github/user.rb new file mode 100644 index 0000000..b45c348 --- /dev/null +++ b/lib/github/user.rb @@ -0,0 +1,52 @@ +# frozen_string_literal: true + +module GitHub + class User < SimpleDelegator + extend GitHub::RateLimited + include Comparable + + def initialize(username) + super $github.user(username) + rescue Octokit::NotFound => e + raise "Invalid user: #{username}: #{e.message}" + end + + def <=>(other) + to_s <=> other.to_s + end + + def eql?(other) + to_s.eql?(other.to_s) + end + + def hash + to_s.hash + end + + def to_s + login + end + + def member? + [company, bio].compact.each do |field| + field.split(%r{[\s/]}).map(&:downcase).each do |co| + return true if GitHub::Data.companies.include?(co) + end + end + false + end + + def self.wrap(collection) + pb = ProgressBar.create(total: collection.size, title: 'Fetching users ...') + result = [] + rate_limited do + collection.each do |obj| + result.push(new(obj)) + pb.increment + end + end + pb.finish + result + end + end +end diff --git a/lib/github/users.rb b/lib/github/users.rb new file mode 100644 index 0000000..2f27c0f --- /dev/null +++ b/lib/github/users.rb @@ -0,0 +1,16 @@ +# frozen_string_literal: true + +module GitHub + class Users < Array + attr_reader :org + + def initialize(org) + @org = org + super($github.org_members(org.name)) + end + + def logins + map(&:login) + end + end +end diff --git a/lib/tools.rb b/lib/tools.rb new file mode 100644 index 0000000..b724276 --- /dev/null +++ b/lib/tools.rb @@ -0,0 +1,20 @@ +# frozen_string_literal: true + +require 'octokit' +require 'active_support' +require 'active_support/core_ext/date/calculations' +require 'ruby-progressbar' +require 'dotiw' +require_relative 'github/rate_limited' +require_relative 'github/data' +require_relative 'github/organization' +require_relative 'github/repos' +require_relative 'github/pull_requests' +require_relative 'github/pull_request' +require_relative 'github/contributors' +require_relative 'github/contributor' +require_relative 'github/users' +require_relative 'github/user' +require_relative 'github/issues' +require_relative 'github/issue' +require_relative 'faraday/cache_control' diff --git a/spec/fixtures/orgs/RedHatOfficial.yml b/spec/fixtures/orgs/RedHatOfficial.yml new file mode 100644 index 0000000..5020084 --- /dev/null +++ b/spec/fixtures/orgs/RedHatOfficial.yml @@ -0,0 +1,293 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.github.com/orgs/RedHatOfficial + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json + User-Agent: + - Octokit Ruby Gem 4.25.1 + Content-Type: + - application/json + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - GitHub.com + Date: + - Wed, 12 Oct 2022 17:58:38 GMT + Content-Type: + - application/json; charset=utf-8 + Cache-Control: + - public, max-age=60, s-maxage=60 + Vary: + - Accept, Accept-Encoding, Accept, X-Requested-With + Etag: + - W/"f64d32672b6799bb341ce72e2f25714eb8e6795d240aaf4bef5bbf7c200eacc4" + Last-Modified: + - Tue, 14 Dec 2021 22:21:27 GMT + X-Github-Media-Type: + - github.v3; format=json + Access-Control-Expose-Headers: + - ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, + X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, + X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, + X-GitHub-Request-Id, Deprecation, Sunset + Access-Control-Allow-Origin: + - "*" + Strict-Transport-Security: + - max-age=31536000; includeSubdomains; preload + X-Frame-Options: + - deny + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - '0' + Referrer-Policy: + - origin-when-cross-origin, strict-origin-when-cross-origin + Content-Security-Policy: + - default-src 'none' + X-Ratelimit-Limit: + - '60' + X-Ratelimit-Remaining: + - '57' + X-Ratelimit-Reset: + - '1665600871' + X-Ratelimit-Resource: + - core + X-Ratelimit-Used: + - '3' + Accept-Ranges: + - bytes + Content-Length: + - '477' + X-Github-Request-Id: + - E420:4755:41F730:8604F0:6347004E + body: + encoding: UTF-8 + string: '{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","url":"https://api.github.com/orgs/RedHatOfficial","repos_url":"https://api.github.com/orgs/RedHatOfficial/repos","events_url":"https://api.github.com/orgs/RedHatOfficial/events","hooks_url":"https://api.github.com/orgs/RedHatOfficial/hooks","issues_url":"https://api.github.com/orgs/RedHatOfficial/issues","members_url":"https://api.github.com/orgs/RedHatOfficial/members{/member}","public_members_url":"https://api.github.com/orgs/RedHatOfficial/public_members{/member}","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","description":"The + official GitHub account for Red Hat (VCR).","name":"Red Hat","company":null,"blog":"https://redhatofficial.github.io","location":null,"email":null,"twitter_username":"RedHat","is_verified":false,"has_organization_projects":true,"has_repository_projects":true,"public_repos":83,"public_gists":0,"followers":494,"following":0,"html_url":"https://github.com/RedHatOfficial","created_at":"2017-11-25T02:39:58Z","updated_at":"2021-12-14T22:21:27Z","type":"Organization"}' + recorded_at: Wed, 12 Oct 2022 17:58:38 GMT +- request: + method: get + uri: https://api.github.com/orgs/RedHatOfficial/repos?per_page=100 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json + User-Agent: + - Octokit Ruby Gem 4.25.1 + Content-Type: + - application/json + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - GitHub.com + Date: + - Wed, 12 Oct 2022 17:58:39 GMT + Content-Type: + - application/json; charset=utf-8 + Cache-Control: + - public, max-age=60, s-maxage=60 + Vary: + - Accept, Accept-Encoding, Accept, X-Requested-With + Etag: + - W/"b74ed7ca7cb491967aa95dee60c581b606e3f044f4877edd7232e3c34064b2c2" + X-Github-Media-Type: + - github.v3; format=json + Access-Control-Expose-Headers: + - ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, + X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, + X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, + X-GitHub-Request-Id, Deprecation, Sunset + Access-Control-Allow-Origin: + - "*" + Strict-Transport-Security: + - max-age=31536000; includeSubdomains; preload + X-Frame-Options: + - deny + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - '0' + Referrer-Policy: + - origin-when-cross-origin, strict-origin-when-cross-origin + Content-Security-Policy: + - default-src 'none' + X-Ratelimit-Limit: + - '60' + X-Ratelimit-Remaining: + - '56' + X-Ratelimit-Reset: + - '1665600871' + X-Ratelimit-Resource: + - core + X-Ratelimit-Used: + - '4' + Accept-Ranges: + - bytes + Transfer-Encoding: + - chunked + X-Github-Request-Id: + - E421:85FD:3C43CA:7AD712:6347004E + body: + encoding: UTF-8 + string: '[{"id":29510360,"node_id":"MDEwOlJlcG9zaXRvcnkyOTUxMDM2MA==","name":"Overpass","full_name":"RedHatOfficial/Overpass","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/Overpass","description":"Overpass + open source web font family — Sponsored by Red Hat","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/Overpass","forks_url":"https://api.github.com/repos/RedHatOfficial/Overpass/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/Overpass/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/Overpass/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/Overpass/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/Overpass/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/Overpass/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/Overpass/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/Overpass/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/Overpass/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/Overpass/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/Overpass/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/Overpass/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/Overpass/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/Overpass/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/Overpass/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/Overpass/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/Overpass/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/Overpass/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/Overpass/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/Overpass/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/Overpass/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/Overpass/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/Overpass/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/Overpass/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/Overpass/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/Overpass/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/Overpass/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/Overpass/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/Overpass/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/Overpass/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/Overpass/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/Overpass/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/Overpass/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/Overpass/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/Overpass/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/Overpass/deployments","created_at":"2015-01-20T03:42:57Z","updated_at":"2022-10-11T17:34:38Z","pushed_at":"2022-06-16T14:47:09Z","git_url":"git://github.com/RedHatOfficial/Overpass.git","ssh_url":"git@github.com:RedHatOfficial/Overpass.git","clone_url":"https://github.com/RedHatOfficial/Overpass.git","svn_url":"https://github.com/RedHatOfficial/Overpass","homepage":"http://overpassfont.org","size":43060,"stargazers_count":1837,"watchers_count":1837,"language":"Makefile","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":89,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":28,"license":{"key":"ofl-1.1","name":"SIL + Open Font License 1.1","spdx_id":"OFL-1.1","url":"https://api.github.com/licenses/ofl-1.1","node_id":"MDc6TGljZW5zZTE3"},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":89,"open_issues":28,"watchers":1837,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":39968616,"node_id":"MDEwOlJlcG9zaXRvcnkzOTk2ODYxNg==","name":"miq-LDAP","full_name":"RedHatOfficial/miq-LDAP","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/miq-LDAP","description":"ManageIQ + Automate Domain for reading and writing information from and to LDAP.","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP","forks_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/miq-LDAP/deployments","created_at":"2015-07-30T19:28:58Z","updated_at":"2022-04-07T08:22:57Z","pushed_at":"2019-10-03T16:26:06Z","git_url":"git://github.com/RedHatOfficial/miq-LDAP.git","ssh_url":"git@github.com:RedHatOfficial/miq-LDAP.git","clone_url":"https://github.com/RedHatOfficial/miq-LDAP.git","svn_url":"https://github.com/RedHatOfficial/miq-LDAP","homepage":"","size":131,"stargazers_count":9,"watchers_count":9,"language":"Ruby","has_issues":true,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":6,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":{"key":"gpl-3.0","name":"GNU + General Public License v3.0","spdx_id":"GPL-3.0","url":"https://api.github.com/licenses/gpl-3.0","node_id":"MDc6TGljZW5zZTk="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["cfme","cloudforms","ldap","manageiq","manageiq-domains","miq","redhatconsulting","rhc","ruby"],"visibility":"public","forks":6,"open_issues":1,"watchers":9,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":40008121,"node_id":"MDEwOlJlcG9zaXRvcnk0MDAwODEyMQ==","name":"miq-RedHat-Satellite6","full_name":"RedHatOfficial/miq-RedHat-Satellite6","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/miq-RedHat-Satellite6","description":"ManageIQ + Automate Domain for integrating with Red Hat Satellite 6 developed by Red + Hat Consulting.","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6","forks_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/miq-RedHat-Satellite6/deployments","created_at":"2015-07-31T14:05:49Z","updated_at":"2021-11-19T08:30:15Z","pushed_at":"2020-09-14T19:57:16Z","git_url":"git://github.com/RedHatOfficial/miq-RedHat-Satellite6.git","ssh_url":"git@github.com:RedHatOfficial/miq-RedHat-Satellite6.git","clone_url":"https://github.com/RedHatOfficial/miq-RedHat-Satellite6.git","svn_url":"https://github.com/RedHatOfficial/miq-RedHat-Satellite6","homepage":"","size":220,"stargazers_count":17,"watchers_count":17,"language":"Ruby","has_issues":true,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":6,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":4,"license":{"key":"gpl-3.0","name":"GNU + General Public License v3.0","spdx_id":"GPL-3.0","url":"https://api.github.com/licenses/gpl-3.0","node_id":"MDc6TGljZW5zZTk="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["cfme","cloudforms","manageiq","manageiq-domains","miq","redhat","redhat-satellite","redhatconsulting","rhc","ruby","satellite","satellite6"],"visibility":"public","forks":6,"open_issues":4,"watchers":17,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":55189145,"node_id":"MDEwOlJlcG9zaXRvcnk1NTE4OTE0NQ==","name":"product-demo-template","full_name":"RedHatOfficial/product-demo-template","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/product-demo-template","description":"You + want to be a Red Hat Rock Star? This template project will get you started + by providing a framework for your demos.","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/product-demo-template","forks_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/product-demo-template/deployments","created_at":"2016-03-31T23:15:23Z","updated_at":"2022-02-03T11:25:11Z","pushed_at":"2019-02-05T21:03:09Z","git_url":"git://github.com/RedHatOfficial/product-demo-template.git","ssh_url":"git@github.com:RedHatOfficial/product-demo-template.git","clone_url":"https://github.com/RedHatOfficial/product-demo-template.git","svn_url":"https://github.com/RedHatOfficial/product-demo-template","homepage":null,"size":27,"stargazers_count":8,"watchers_count":8,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":2,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":2,"open_issues":0,"watchers":8,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":70928935,"node_id":"MDEwOlJlcG9zaXRvcnk3MDkyODkzNQ==","name":"rhsecapi","full_name":"RedHatOfficial/rhsecapi","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/rhsecapi","description":"Tools + that utilize the Red Hat Security Data API","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/rhsecapi","forks_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/rhsecapi/deployments","created_at":"2016-10-14T16:41:49Z","updated_at":"2022-03-14T09:26:15Z","pushed_at":"2022-01-07T13:45:01Z","git_url":"git://github.com/RedHatOfficial/rhsecapi.git","ssh_url":"git@github.com:RedHatOfficial/rhsecapi.git","clone_url":"https://github.com/RedHatOfficial/rhsecapi.git","svn_url":"https://github.com/RedHatOfficial/rhsecapi","homepage":null,"size":226,"stargazers_count":46,"watchers_count":46,"language":"Python","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":20,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":16,"license":{"key":"gpl-3.0","name":"GNU + General Public License v3.0","spdx_id":"GPL-3.0","url":"https://api.github.com/licenses/gpl-3.0","node_id":"MDc6TGljZW5zZTk="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":20,"open_issues":16,"watchers":46,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":83714791,"node_id":"MDEwOlJlcG9zaXRvcnk4MzcxNDc5MQ==","name":"IoT_Summit_Lab","full_name":"RedHatOfficial/IoT_Summit_Lab","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/IoT_Summit_Lab","description":"This + repository contains the material build for the 2016 Red Hat Summit lab of + the same name.","fork":true,"url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab","forks_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/IoT_Summit_Lab/deployments","created_at":"2017-03-02T19:09:38Z","updated_at":"2022-02-03T11:26:32Z","pushed_at":"2019-02-05T21:02:26Z","git_url":"git://github.com/RedHatOfficial/IoT_Summit_Lab.git","ssh_url":"git@github.com:RedHatOfficial/IoT_Summit_Lab.git","clone_url":"https://github.com/RedHatOfficial/IoT_Summit_Lab.git","svn_url":"https://github.com/RedHatOfficial/IoT_Summit_Lab","homepage":"","size":8036,"stargazers_count":6,"watchers_count":6,"language":"Java","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":2,"open_issues":0,"watchers":6,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":93072700,"node_id":"MDEwOlJlcG9zaXRvcnk5MzA3MjcwMA==","name":"miq-Utilities","full_name":"RedHatOfficial/miq-Utilities","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/miq-Utilities","description":"ManageIQ + Automate Domain of shared utilities to be used by other ManageIQ domains developed + by Red Hat Consulting.","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities","forks_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/miq-Utilities/deployments","created_at":"2017-06-01T15:34:48Z","updated_at":"2020-12-17T16:37:01Z","pushed_at":"2020-06-18T14:58:02Z","git_url":"git://github.com/RedHatOfficial/miq-Utilities.git","ssh_url":"git@github.com:RedHatOfficial/miq-Utilities.git","clone_url":"https://github.com/RedHatOfficial/miq-Utilities.git","svn_url":"https://github.com/RedHatOfficial/miq-Utilities","homepage":"","size":476,"stargazers_count":18,"watchers_count":18,"language":"Ruby","has_issues":true,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":16,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":13,"license":{"key":"gpl-3.0","name":"GNU + General Public License v3.0","spdx_id":"GPL-3.0","url":"https://api.github.com/licenses/gpl-3.0","node_id":"MDc6TGljZW5zZTk="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["cfme","cloudforms","manageiq","manageiq-domains","miq","redhat","redhatconsulting","rhc","ruby"],"visibility":"public","forks":16,"open_issues":13,"watchers":18,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":99951144,"node_id":"MDEwOlJlcG9zaXRvcnk5OTk1MTE0NA==","name":"ansible-redhat_satellite6","full_name":"RedHatOfficial/ansible-redhat_satellite6","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-redhat_satellite6","description":"Ansible + playbooks for Red Hat Satellite 6.","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_satellite6/deployments","created_at":"2017-08-10T17:58:04Z","updated_at":"2022-05-03T18:28:17Z","pushed_at":"2020-02-23T16:31:01Z","git_url":"git://github.com/RedHatOfficial/ansible-redhat_satellite6.git","ssh_url":"git@github.com:RedHatOfficial/ansible-redhat_satellite6.git","clone_url":"https://github.com/RedHatOfficial/ansible-redhat_satellite6.git","svn_url":"https://github.com/RedHatOfficial/ansible-redhat_satellite6","homepage":null,"size":44,"stargazers_count":19,"watchers_count":19,"language":null,"has_issues":true,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":15,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":2,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["ansible","redhat","sallite6"],"visibility":"public","forks":15,"open_issues":2,"watchers":19,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":104757829,"node_id":"MDEwOlJlcG9zaXRvcnkxMDQ3NTc4Mjk=","name":"ose-pivproxy","full_name":"RedHatOfficial/ose-pivproxy","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ose-pivproxy","description":"A + containerized PIV/CAC/x509 proxy for OSE","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy","forks_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ose-pivproxy/deployments","created_at":"2017-09-25T14:05:38Z","updated_at":"2021-12-29T17:13:50Z","pushed_at":"2019-04-04T14:14:19Z","git_url":"git://github.com/RedHatOfficial/ose-pivproxy.git","ssh_url":"git@github.com:RedHatOfficial/ose-pivproxy.git","clone_url":"https://github.com/RedHatOfficial/ose-pivproxy.git","svn_url":"https://github.com/RedHatOfficial/ose-pivproxy","homepage":"","size":58,"stargazers_count":19,"watchers_count":19,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":7,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":2,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["openshift","piv-proxy"],"visibility":"public","forks":7,"open_issues":2,"watchers":19,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":107165048,"node_id":"MDEwOlJlcG9zaXRvcnkxMDcxNjUwNDg=","name":"rhos-vyos-nfv-demo","full_name":"RedHatOfficial/rhos-vyos-nfv-demo","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/rhos-vyos-nfv-demo","description":"NFV + Demo on Red Hat Openstack using the Opensource Networking Appliance VyOS","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo","forks_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/rhos-vyos-nfv-demo/deployments","created_at":"2017-10-16T18:09:25Z","updated_at":"2022-06-15T05:23:24Z","pushed_at":"2019-02-05T21:00:15Z","git_url":"git://github.com/RedHatOfficial/rhos-vyos-nfv-demo.git","ssh_url":"git@github.com:RedHatOfficial/rhos-vyos-nfv-demo.git","clone_url":"https://github.com/RedHatOfficial/rhos-vyos-nfv-demo.git","svn_url":"https://github.com/RedHatOfficial/rhos-vyos-nfv-demo","homepage":"","size":19,"stargazers_count":11,"watchers_count":11,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":7,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":7,"open_issues":1,"watchers":11,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":113221193,"node_id":"MDEwOlJlcG9zaXRvcnkxMTMyMjExOTM=","name":"CO.LAB","full_name":"RedHatOfficial/CO.LAB","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/CO.LAB","description":"An + open source repository for the learning materials that are used by the CO.LAB + program.","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/CO.LAB","forks_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/CO.LAB/deployments","created_at":"2017-12-05T18:59:01Z","updated_at":"2022-06-24T00:04:54Z","pushed_at":"2022-04-13T11:51:48Z","git_url":"git://github.com/RedHatOfficial/CO.LAB.git","ssh_url":"git@github.com:RedHatOfficial/CO.LAB.git","clone_url":"https://github.com/RedHatOfficial/CO.LAB.git","svn_url":"https://github.com/RedHatOfficial/CO.LAB","homepage":"https://www.redhat.com/en/open-source-stories/colab","size":102975,"stargazers_count":62,"watchers_count":62,"language":"OpenSCAD","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":14,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["collaboration","curriculum","open-source","raspberry-pi","stem"],"visibility":"public","forks":14,"open_issues":0,"watchers":62,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":119304610,"node_id":"MDEwOlJlcG9zaXRvcnkxMTkzMDQ2MTA=","name":"ansible-cloud_utils","full_name":"RedHatOfficial/ansible-cloud_utils","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-cloud_utils","description":"Ansible + utilities for performing operations against public and private \"clouds\".","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-cloud_utils/deployments","created_at":"2018-01-28T22:42:46Z","updated_at":"2022-02-03T11:26:46Z","pushed_at":"2020-05-18T13:28:54Z","git_url":"git://github.com/RedHatOfficial/ansible-cloud_utils.git","ssh_url":"git@github.com:RedHatOfficial/ansible-cloud_utils.git","clone_url":"https://github.com/RedHatOfficial/ansible-cloud_utils.git","svn_url":"https://github.com/RedHatOfficial/ansible-cloud_utils","homepage":null,"size":34,"stargazers_count":5,"watchers_count":5,"language":null,"has_issues":true,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":6,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":{"key":"apache-2.0","name":"Apache + License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":6,"open_issues":1,"watchers":5,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":119426809,"node_id":"MDEwOlJlcG9zaXRvcnkxMTk0MjY4MDk=","name":"ansible-redhat_openshift_utils","full_name":"RedHatOfficial/ansible-redhat_openshift_utils","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-redhat_openshift_utils","description":"Ansible + content supplemental to the openshift-ansible project for doing things that + don''t ship with that project, such as prerequisites for updates, upgrades, + restarts, etc.","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_openshift_utils/deployments","created_at":"2018-01-29T18:59:47Z","updated_at":"2022-09-26T16:30:51Z","pushed_at":"2022-01-19T16:16:38Z","git_url":"git://github.com/RedHatOfficial/ansible-redhat_openshift_utils.git","ssh_url":"git@github.com:RedHatOfficial/ansible-redhat_openshift_utils.git","clone_url":"https://github.com/RedHatOfficial/ansible-redhat_openshift_utils.git","svn_url":"https://github.com/RedHatOfficial/ansible-redhat_openshift_utils","homepage":null,"size":79,"stargazers_count":28,"watchers_count":28,"language":"Python","has_issues":true,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":17,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":2,"license":{"key":"apache-2.0","name":"Apache + License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":17,"open_issues":2,"watchers":28,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":120324124,"node_id":"MDEwOlJlcG9zaXRvcnkxMjAzMjQxMjQ=","name":"ansible-redhat_cloudforms","full_name":"RedHatOfficial/ansible-redhat_cloudforms","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-redhat_cloudforms","description":"Ansible + playbooks for Red Hat CloudForms Management Engine (CFME).","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-redhat_cloudforms/deployments","created_at":"2018-02-05T15:36:06Z","updated_at":"2022-05-25T12:01:26Z","pushed_at":"2020-04-15T19:07:35Z","git_url":"git://github.com/RedHatOfficial/ansible-redhat_cloudforms.git","ssh_url":"git@github.com:RedHatOfficial/ansible-redhat_cloudforms.git","clone_url":"https://github.com/RedHatOfficial/ansible-redhat_cloudforms.git","svn_url":"https://github.com/RedHatOfficial/ansible-redhat_cloudforms","homepage":null,"size":57,"stargazers_count":22,"watchers_count":22,"language":"Ruby","has_issues":true,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":13,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":2,"license":{"key":"apache-2.0","name":"Apache + License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":13,"open_issues":2,"watchers":22,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":120553630,"node_id":"MDEwOlJlcG9zaXRvcnkxMjA1NTM2MzA=","name":"ansible-role-manageiq_workers","full_name":"RedHatOfficial/ansible-role-manageiq_workers","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-manageiq_workers","description":"Ansible + role for configuring the workers on ManageIQ / CloudForms Management Engine + (CFME) appliances.","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-manageiq_workers/deployments","created_at":"2018-02-07T02:46:43Z","updated_at":"2020-07-29T15:57:41Z","pushed_at":"2020-04-27T17:59:26Z","git_url":"git://github.com/RedHatOfficial/ansible-role-manageiq_workers.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-manageiq_workers.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-manageiq_workers.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-manageiq_workers","homepage":null,"size":24,"stargazers_count":7,"watchers_count":7,"language":"Python","has_issues":true,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":2,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":{"key":"apache-2.0","name":"Apache + License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["ansible","ansible-role","cfme","cloudforms","manageiq","miq","redhat","redhatconsulting"],"visibility":"public","forks":2,"open_issues":1,"watchers":7,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":122941766,"node_id":"MDEwOlJlcG9zaXRvcnkxMjI5NDE3NjY=","name":"rhsummitlabs-2018","full_name":"RedHatOfficial/rhsummitlabs-2018","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/rhsummitlabs-2018","description":"The + documentation repository for all Red Hat Summit 2018 Labs. The full labs agenda + is online: https://agenda.summit.redhat.com/?Instructor-led%20Lab=0","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018","forks_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/rhsummitlabs-2018/deployments","created_at":"2018-02-26T08:58:34Z","updated_at":"2022-08-17T19:38:28Z","pushed_at":"2022-08-17T19:39:47Z","git_url":"git://github.com/RedHatOfficial/rhsummitlabs-2018.git","ssh_url":"git@github.com:RedHatOfficial/rhsummitlabs-2018.git","clone_url":"https://github.com/RedHatOfficial/rhsummitlabs-2018.git","svn_url":"https://github.com/RedHatOfficial/rhsummitlabs-2018","homepage":null,"size":79915,"stargazers_count":80,"watchers_count":80,"language":"HTML","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":89,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":2,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":89,"open_issues":2,"watchers":80,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":126231747,"node_id":"MDEwOlJlcG9zaXRvcnkxMjYyMzE3NDc=","name":"RedHatOfficial.github.io","full_name":"RedHatOfficial/RedHatOfficial.github.io","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/RedHatOfficial.github.io","description":"The + official Red Hat project page.","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io","forks_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/RedHatOfficial.github.io/deployments","created_at":"2018-03-21T19:42:36Z","updated_at":"2022-10-12T17:20:42Z","pushed_at":"2022-10-11T06:27:27Z","git_url":"git://github.com/RedHatOfficial/RedHatOfficial.github.io.git","ssh_url":"git@github.com:RedHatOfficial/RedHatOfficial.github.io.git","clone_url":"https://github.com/RedHatOfficial/RedHatOfficial.github.io.git","svn_url":"https://github.com/RedHatOfficial/RedHatOfficial.github.io","homepage":null,"size":2660,"stargazers_count":461,"watchers_count":461,"language":"SCSS","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":205,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":22,"license":{"key":"cc-by-sa-4.0","name":"Creative + Commons Attribution Share Alike 4.0 International","spdx_id":"CC-BY-SA-4.0","url":"https://api.github.com/licenses/cc-by-sa-4.0","node_id":"MDc6TGljZW5zZTI2"},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":205,"open_issues":22,"watchers":461,"default_branch":"dev","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":128260752,"node_id":"MDEwOlJlcG9zaXRvcnkxMjgyNjA3NTI=","name":"miq-Infoblox","full_name":"RedHatOfficial/miq-Infoblox","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/miq-Infoblox","description":"ManageIQ + Automate Domain for integrating with Infoblox developed by Red Hat Consulting.","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox","forks_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/miq-Infoblox/deployments","created_at":"2018-04-05T20:29:26Z","updated_at":"2022-02-03T11:26:04Z","pushed_at":"2020-06-22T12:28:38Z","git_url":"git://github.com/RedHatOfficial/miq-Infoblox.git","ssh_url":"git@github.com:RedHatOfficial/miq-Infoblox.git","clone_url":"https://github.com/RedHatOfficial/miq-Infoblox.git","svn_url":"https://github.com/RedHatOfficial/miq-Infoblox","homepage":null,"size":50,"stargazers_count":7,"watchers_count":7,"language":"Ruby","has_issues":true,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":{"key":"gpl-3.0","name":"GNU + General Public License v3.0","spdx_id":"GPL-3.0","url":"https://api.github.com/licenses/gpl-3.0","node_id":"MDc6TGljZW5zZTk="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":1,"watchers":7,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":136063776,"node_id":"MDEwOlJlcG9zaXRvcnkxMzYwNjM3NzY=","name":"ansible-role-rhel7-pci-dss","full_name":"RedHatOfficial/ansible-role-rhel7-pci-dss","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-pci-dss","description":"PCI-DSS + v3.2.1 Control Baseline for Red Hat Enterprise Linux 7 - Ansible role generated + from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-pci-dss/deployments","created_at":"2018-06-04T18:02:04Z","updated_at":"2022-08-19T12:02:56Z","pushed_at":"2022-10-05T11:26:08Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel7-pci-dss.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel7-pci-dss.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-pci-dss.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-pci-dss","homepage":"https://github.com/complianceascode/content","size":479,"stargazers_count":27,"watchers_count":27,"language":"Jinja","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":20,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":20,"open_issues":0,"watchers":27,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":136064066,"node_id":"MDEwOlJlcG9zaXRvcnkxMzYwNjQwNjY=","name":"ansible-role-rhel7-stig","full_name":"RedHatOfficial/ansible-role-rhel7-stig","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-stig","description":"DISA + STIG for Red Hat Enterprise Linux 7 - Ansible role generated from ComplianceAsCode + Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-stig/deployments","created_at":"2018-06-04T18:04:40Z","updated_at":"2022-09-20T17:45:59Z","pushed_at":"2022-10-05T11:24:40Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel7-stig.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel7-stig.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-stig.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-stig","homepage":"https://github.com/complianceascode/content","size":589,"stargazers_count":104,"watchers_count":104,"language":null,"has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":63,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":6,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":63,"open_issues":6,"watchers":104,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":136064170,"node_id":"MDEwOlJlcG9zaXRvcnkxMzYwNjQxNzA=","name":"ansible-role-rhel7-rht-ccp","full_name":"RedHatOfficial/ansible-role-rhel7-rht-ccp","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-rht-ccp","description":"Red + Hat Corporate Profile for Certified Cloud Providers (RH CCP) - Ansible role + generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-rht-ccp/deployments","created_at":"2018-06-04T18:05:52Z","updated_at":"2022-01-14T08:11:42Z","pushed_at":"2022-10-05T11:26:13Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel7-rht-ccp.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel7-rht-ccp.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-rht-ccp.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-rht-ccp","homepage":"https://github.com/complianceascode/content","size":171,"stargazers_count":4,"watchers_count":4,"language":"Jinja","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":2,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":2,"open_issues":0,"watchers":4,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":136064307,"node_id":"MDEwOlJlcG9zaXRvcnkxMzYwNjQzMDc=","name":"ansible-role-rhel7-ospp","full_name":"RedHatOfficial/ansible-role-rhel7-ospp","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-ospp","description":"OSPP + - Protection Profile for General Purpose Operating Systems v4.2.1 - Ansible + role generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-ospp/deployments","created_at":"2018-06-04T18:07:01Z","updated_at":"2021-12-10T01:44:24Z","pushed_at":"2022-10-05T11:26:03Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel7-ospp.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel7-ospp.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-ospp.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-ospp","homepage":"https://github.com/complianceascode/content","size":426,"stargazers_count":7,"watchers_count":7,"language":"Jinja","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":6,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":6,"open_issues":1,"watchers":7,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":136064392,"node_id":"MDEwOlJlcG9zaXRvcnkxMzYwNjQzOTI=","name":"ansible-role-rhel7-cui","full_name":"RedHatOfficial/ansible-role-rhel7-cui","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-cui","description":"Unclassified + Information in Non-federal Information Systems and Organizations (NIST 800-171) + - Ansible role generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cui/deployments","created_at":"2018-06-04T18:08:05Z","updated_at":"2022-09-19T21:29:24Z","pushed_at":"2022-10-05T11:27:13Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel7-cui.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel7-cui.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-cui.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-cui","homepage":"https://github.com/complianceascode/content","size":293,"stargazers_count":19,"watchers_count":19,"language":"Jinja","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":12,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":12,"open_issues":0,"watchers":19,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":136064587,"node_id":"MDEwOlJlcG9zaXRvcnkxMzYwNjQ1ODc=","name":"ansible-role-rhel7-hipaa","full_name":"RedHatOfficial/ansible-role-rhel7-hipaa","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-hipaa","description":"Health + Insurance Portability and Accountability Act (HIPAA) - Ansible role generated + from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-hipaa/deployments","created_at":"2018-06-04T18:09:43Z","updated_at":"2021-12-10T01:44:13Z","pushed_at":"2022-10-05T11:25:58Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel7-hipaa.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel7-hipaa.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-hipaa.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-hipaa","homepage":"https://github.com/complianceascode/content","size":609,"stargazers_count":11,"watchers_count":11,"language":"Jinja","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":9,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":9,"open_issues":1,"watchers":11,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":136064711,"node_id":"MDEwOlJlcG9zaXRvcnkxMzYwNjQ3MTE=","name":"ansible-role-rhel7-c2s","full_name":"RedHatOfficial/ansible-role-rhel7-c2s","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-c2s","description":"C2S + for Red Hat Enterprise Linux 7 - Ansible role generated from ComplianceAsCode + Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-c2s/deployments","created_at":"2018-06-04T18:10:43Z","updated_at":"2021-11-07T03:41:31Z","pushed_at":"2021-11-07T03:41:28Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel7-c2s.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel7-c2s.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-c2s.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-c2s","homepage":"https://github.com/complianceascode/content","size":167,"stargazers_count":10,"watchers_count":10,"language":"Jinja","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":13,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":2,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":13,"open_issues":2,"watchers":10,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":141166563,"node_id":"MDEwOlJlcG9zaXRvcnkxNDExNjY1NjM=","name":"ansible-role-redhat_satellite6_organizations","full_name":"RedHatOfficial/ansible-role-redhat_satellite6_organizations","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-redhat_satellite6_organizations","description":"Ansible + role for configuring everything about the Organizations in Satellite 6.","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_organizations/deployments","created_at":"2018-07-16T16:46:15Z","updated_at":"2022-05-08T09:52:42Z","pushed_at":"2018-08-30T01:59:44Z","git_url":"git://github.com/RedHatOfficial/ansible-role-redhat_satellite6_organizations.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-redhat_satellite6_organizations.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-redhat_satellite6_organizations.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-redhat_satellite6_organizations","homepage":null,"size":50,"stargazers_count":7,"watchers_count":7,"language":"Python","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":7,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"apache-2.0","name":"Apache + License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":7,"open_issues":0,"watchers":7,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":144284981,"node_id":"MDEwOlJlcG9zaXRvcnkxNDQyODQ5ODE=","name":"odie","full_name":"RedHatOfficial/odie","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/odie","description":"ODIE + - OpenShift Disconnected Installer for Enterprise. ","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/odie","forks_url":"https://api.github.com/repos/RedHatOfficial/odie/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/odie/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/odie/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/odie/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/odie/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/odie/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/odie/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/odie/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/odie/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/odie/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/odie/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/odie/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/odie/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/odie/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/odie/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/odie/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/odie/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/odie/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/odie/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/odie/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/odie/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/odie/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/odie/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/odie/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/odie/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/odie/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/odie/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/odie/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/odie/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/odie/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/odie/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/odie/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/odie/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/odie/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/odie/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/odie/deployments","created_at":"2018-08-10T12:45:17Z","updated_at":"2021-09-25T18:13:56Z","pushed_at":"2019-04-10T16:24:55Z","git_url":"git://github.com/RedHatOfficial/odie.git","ssh_url":"git@github.com:RedHatOfficial/odie.git","clone_url":"https://github.com/RedHatOfficial/odie.git","svn_url":"https://github.com/RedHatOfficial/odie","homepage":"","size":14712,"stargazers_count":25,"watchers_count":25,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":6,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":15,"license":{"key":"gpl-2.0","name":"GNU + General Public License v2.0","spdx_id":"GPL-2.0","url":"https://api.github.com/licenses/gpl-2.0","node_id":"MDc6TGljZW5zZTg="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":6,"open_issues":15,"watchers":25,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":146613007,"node_id":"MDEwOlJlcG9zaXRvcnkxNDY2MTMwMDc=","name":"ansible-role-redhat_satellite6_installation","full_name":"RedHatOfficial/ansible-role-redhat_satellite6_installation","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-redhat_satellite6_installation","description":"Ansible + Automation of Red Hat Satellite 6 Installation","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_installation/deployments","created_at":"2018-08-29T14:33:39Z","updated_at":"2022-09-01T22:23:29Z","pushed_at":"2020-04-15T15:26:36Z","git_url":"git://github.com/RedHatOfficial/ansible-role-redhat_satellite6_installation.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-redhat_satellite6_installation.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-redhat_satellite6_installation.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-redhat_satellite6_installation","homepage":"","size":2638,"stargazers_count":18,"watchers_count":18,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":27,"mirror_url":null,"archived":true,"disabled":false,"open_issues_count":12,"license":{"key":"mit","name":"MIT + License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":27,"open_issues":12,"watchers":18,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":146616960,"node_id":"MDEwOlJlcG9zaXRvcnkxNDY2MTY5NjA=","name":"ansible-role-redhat_satellite6_capsule_installation","full_name":"RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation","description":"Ansible + Automation of Red Hat Satellite 6 Capsule Installation","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation/deployments","created_at":"2018-08-29T15:01:17Z","updated_at":"2021-08-19T22:19:00Z","pushed_at":"2018-08-30T17:59:50Z","git_url":"git://github.com/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-redhat_satellite6_capsule_installation","homepage":null,"size":19,"stargazers_count":5,"watchers_count":5,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":9,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":2,"license":{"key":"apache-2.0","name":"Apache + License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":9,"open_issues":2,"watchers":5,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":149165709,"node_id":"MDEwOlJlcG9zaXRvcnkxNDkxNjU3MDk=","name":"openhardware","full_name":"RedHatOfficial/openhardware","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/openhardware","description":"Source + code for Red Hat''s open hardware offerings","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/openhardware","forks_url":"https://api.github.com/repos/RedHatOfficial/openhardware/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/openhardware/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/openhardware/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/openhardware/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/openhardware/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/openhardware/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/openhardware/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/openhardware/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/openhardware/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/openhardware/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/openhardware/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/openhardware/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/openhardware/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/openhardware/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/openhardware/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/openhardware/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/openhardware/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/openhardware/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/openhardware/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/openhardware/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/openhardware/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/openhardware/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/openhardware/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/openhardware/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/openhardware/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/openhardware/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/openhardware/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/openhardware/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/openhardware/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/openhardware/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/openhardware/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/openhardware/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/openhardware/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/openhardware/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/openhardware/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/openhardware/deployments","created_at":"2018-09-17T17:54:26Z","updated_at":"2021-11-17T15:48:33Z","pushed_at":"2018-09-18T13:52:28Z","git_url":"git://github.com/RedHatOfficial/openhardware.git","ssh_url":"git@github.com:RedHatOfficial/openhardware.git","clone_url":"https://github.com/RedHatOfficial/openhardware.git","svn_url":"https://github.com/RedHatOfficial/openhardware","homepage":"","size":578,"stargazers_count":8,"watchers_count":8,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"gpl-2.0","name":"GNU + General Public License v2.0","spdx_id":"GPL-2.0","url":"https://api.github.com/licenses/gpl-2.0","node_id":"MDc6TGljZW5zZTg="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":2,"open_issues":0,"watchers":8,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":149455116,"node_id":"MDEwOlJlcG9zaXRvcnkxNDk0NTUxMTY=","name":"collab-by-code-api","full_name":"RedHatOfficial/collab-by-code-api","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/collab-by-code-api","description":"CollabByCode + prototype Event API","fork":true,"url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api","forks_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-api/deployments","created_at":"2018-09-19T13:28:53Z","updated_at":"2020-07-29T16:26:11Z","pushed_at":"2018-09-23T14:51:17Z","git_url":"git://github.com/RedHatOfficial/collab-by-code-api.git","ssh_url":"git@github.com:RedHatOfficial/collab-by-code-api.git","clone_url":"https://github.com/RedHatOfficial/collab-by-code-api.git","svn_url":"https://github.com/RedHatOfficial/collab-by-code-api","homepage":"","size":301,"stargazers_count":1,"watchers_count":1,"language":"TypeScript","has_issues":false,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"apache-2.0","name":"Apache + License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":1,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":149455168,"node_id":"MDEwOlJlcG9zaXRvcnkxNDk0NTUxNjg=","name":"collab-by-code-ui","full_name":"RedHatOfficial/collab-by-code-ui","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/collab-by-code-ui","description":"CollabByCode + prototype Event UI","fork":true,"url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui","forks_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/collab-by-code-ui/deployments","created_at":"2018-09-19T13:29:17Z","updated_at":"2021-08-24T05:55:45Z","pushed_at":"2018-09-24T17:10:19Z","git_url":"git://github.com/RedHatOfficial/collab-by-code-ui.git","ssh_url":"git@github.com:RedHatOfficial/collab-by-code-ui.git","clone_url":"https://github.com/RedHatOfficial/collab-by-code-ui.git","svn_url":"https://github.com/RedHatOfficial/collab-by-code-ui","homepage":"","size":1711,"stargazers_count":2,"watchers_count":2,"language":"Vue","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"apache-2.0","name":"Apache + License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":2,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":149675364,"node_id":"MDEwOlJlcG9zaXRvcnkxNDk2NzUzNjQ=","name":"ansible-role-rhel7-cjis","full_name":"RedHatOfficial/ansible-role-rhel7-cjis","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-cjis","description":"Criminal + Justice Information Services (CJIS) Security Policy - Ansible role generated + from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cjis/deployments","created_at":"2018-09-20T21:58:15Z","updated_at":"2021-12-10T01:42:32Z","pushed_at":"2022-10-05T11:25:52Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel7-cjis.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel7-cjis.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-cjis.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-cjis","homepage":"https://github.com/complianceascode/content","size":172,"stargazers_count":3,"watchers_count":3,"language":"Jinja","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":0,"watchers":3,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":160429814,"node_id":"MDEwOlJlcG9zaXRvcnkxNjA0Mjk4MTQ=","name":"openshift-artifactory-apache-reverse-proxy","full_name":"RedHatOfficial/openshift-artifactory-apache-reverse-proxy","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/openshift-artifactory-apache-reverse-proxy","description":"This + repository contains instructions and resources for creating an Apache Reverse + Proxy on OpenShift for Artifactroy also running on OpenShift.","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy","forks_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/openshift-artifactory-apache-reverse-proxy/deployments","created_at":"2018-12-04T23:00:30Z","updated_at":"2021-05-26T15:50:04Z","pushed_at":"2021-05-26T15:50:01Z","git_url":"git://github.com/RedHatOfficial/openshift-artifactory-apache-reverse-proxy.git","ssh_url":"git@github.com:RedHatOfficial/openshift-artifactory-apache-reverse-proxy.git","clone_url":"https://github.com/RedHatOfficial/openshift-artifactory-apache-reverse-proxy.git","svn_url":"https://github.com/RedHatOfficial/openshift-artifactory-apache-reverse-proxy","homepage":null,"size":11,"stargazers_count":2,"watchers_count":2,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":4,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":4,"open_issues":1,"watchers":2,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":177630365,"node_id":"MDEwOlJlcG9zaXRvcnkxNzc2MzAzNjU=","name":"RedHatFont","full_name":"RedHatOfficial/RedHatFont","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/RedHatFont","description":"Red + Hat''s Open Source Fonts - Red Hat Display and Red Hat Text","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/RedHatFont","forks_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/RedHatFont/deployments","created_at":"2019-03-25T17:08:45Z","updated_at":"2022-10-12T17:22:52Z","pushed_at":"2022-09-13T19:50:26Z","git_url":"git://github.com/RedHatOfficial/RedHatFont.git","ssh_url":"git@github.com:RedHatOfficial/RedHatFont.git","clone_url":"https://github.com/RedHatOfficial/RedHatFont.git","svn_url":"https://github.com/RedHatOfficial/RedHatFont","homepage":null,"size":16670,"stargazers_count":351,"watchers_count":351,"language":"Python","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":41,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":16,"license":{"key":"ofl-1.1","name":"SIL + Open Font License 1.1","spdx_id":"OFL-1.1","url":"https://api.github.com/licenses/ofl-1.1","node_id":"MDc6TGljZW5zZTE3"},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":41,"open_issues":16,"watchers":351,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":181050380,"node_id":"MDEwOlJlcG9zaXRvcnkxODEwNTAzODA=","name":"bwht-fonts","full_name":"RedHatOfficial/bwht-fonts","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/bwht-fonts","description":"6 + handwritten fonts created for the Because We Had To project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts","forks_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/bwht-fonts/deployments","created_at":"2019-04-12T17:04:21Z","updated_at":"2022-08-14T11:34:28Z","pushed_at":"2019-05-01T14:31:45Z","git_url":"git://github.com/RedHatOfficial/bwht-fonts.git","ssh_url":"git@github.com:RedHatOfficial/bwht-fonts.git","clone_url":"https://github.com/RedHatOfficial/bwht-fonts.git","svn_url":"https://github.com/RedHatOfficial/bwht-fonts","homepage":null,"size":863,"stargazers_count":17,"watchers_count":17,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"ofl-1.1","name":"SIL + Open Font License 1.1","spdx_id":"OFL-1.1","url":"https://api.github.com/licenses/ofl-1.1","node_id":"MDc6TGljZW5zZTE3"},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":0,"watchers":17,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":183456455,"node_id":"MDEwOlJlcG9zaXRvcnkxODM0NTY0NTU=","name":"GoCourse","full_name":"RedHatOfficial/GoCourse","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/GoCourse","description":"Go + language course","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/GoCourse","forks_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/GoCourse/deployments","created_at":"2019-04-25T14:58:19Z","updated_at":"2022-10-11T16:04:36Z","pushed_at":"2022-10-03T06:03:16Z","git_url":"git://github.com/RedHatOfficial/GoCourse.git","ssh_url":"git@github.com:RedHatOfficial/GoCourse.git","clone_url":"https://github.com/RedHatOfficial/GoCourse.git","svn_url":"https://github.com/RedHatOfficial/GoCourse","homepage":null,"size":1068,"stargazers_count":285,"watchers_count":285,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":86,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":13,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":86,"open_issues":13,"watchers":285,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":186077169,"node_id":"MDEwOlJlcG9zaXRvcnkxODYwNzcxNjk=","name":"ansible-role-rhel8-cjis","full_name":"RedHatOfficial/ansible-role-rhel8-cjis","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-cjis","description":"Criminal + Justice Information Services (CJIS) Security Policy - Ansible role generated + from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cjis/deployments","created_at":"2019-05-11T02:12:01Z","updated_at":"2021-12-10T01:46:38Z","pushed_at":"2022-10-05T11:32:14Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel8-cjis.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel8-cjis.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-cjis.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-cjis","homepage":"https://github.com/complianceascode/content","size":212,"stargazers_count":3,"watchers_count":3,"language":null,"has_issues":false,"has_projects":true,"has_downloads":false,"has_wiki":false,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":0,"watchers":3,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":186077172,"node_id":"MDEwOlJlcG9zaXRvcnkxODYwNzcxNzI=","name":"ansible-role-rhel8-cui","full_name":"RedHatOfficial/ansible-role-rhel8-cui","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-cui","description":"Unclassified + Information in Non-federal Information Systems and Organizations (NIST 800-171) + - Ansible role generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cui/deployments","created_at":"2019-05-11T02:12:02Z","updated_at":"2022-06-30T15:30:03Z","pushed_at":"2022-10-05T11:32:44Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel8-cui.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel8-cui.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-cui.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-cui","homepage":"https://github.com/complianceascode/content","size":279,"stargazers_count":11,"watchers_count":11,"language":null,"has_issues":false,"has_projects":true,"has_downloads":false,"has_wiki":false,"has_pages":false,"forks_count":6,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":6,"open_issues":0,"watchers":11,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":186077175,"node_id":"MDEwOlJlcG9zaXRvcnkxODYwNzcxNzU=","name":"ansible-role-rhel8-hipaa","full_name":"RedHatOfficial/ansible-role-rhel8-hipaa","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-hipaa","description":"Health + Insurance Portability and Accountability Act (HIPAA) - Ansible role generated + from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-hipaa/deployments","created_at":"2019-05-11T02:12:03Z","updated_at":"2021-12-10T01:46:31Z","pushed_at":"2022-10-05T11:32:22Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel8-hipaa.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel8-hipaa.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-hipaa.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-hipaa","homepage":"https://github.com/complianceascode/content","size":290,"stargazers_count":5,"watchers_count":5,"language":null,"has_issues":false,"has_projects":true,"has_downloads":false,"has_wiki":false,"has_pages":false,"forks_count":6,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":6,"open_issues":0,"watchers":5,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":186077177,"node_id":"MDEwOlJlcG9zaXRvcnkxODYwNzcxNzc=","name":"ansible-role-rhel8-ospp","full_name":"RedHatOfficial/ansible-role-rhel8-ospp","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-ospp","description":"Protection + Profile for General Purpose Operating Systems - Ansible role generated from + ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-ospp/deployments","created_at":"2019-05-11T02:12:04Z","updated_at":"2022-03-18T15:04:10Z","pushed_at":"2022-10-05T11:32:27Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel8-ospp.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel8-ospp.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-ospp.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-ospp","homepage":"https://github.com/complianceascode/content","size":294,"stargazers_count":8,"watchers_count":8,"language":null,"has_issues":false,"has_projects":true,"has_downloads":false,"has_wiki":false,"has_pages":false,"forks_count":13,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":13,"open_issues":0,"watchers":8,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":186077178,"node_id":"MDEwOlJlcG9zaXRvcnkxODYwNzcxNzg=","name":"ansible-role-rhel8-pci-dss","full_name":"RedHatOfficial/ansible-role-rhel8-pci-dss","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-pci-dss","description":"PCI-DSS + v3.2.1 Control Baseline for Red Hat Enterprise Linux 8 - Ansible role generated + from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-pci-dss/deployments","created_at":"2019-05-11T02:12:05Z","updated_at":"2022-09-29T08:56:20Z","pushed_at":"2022-10-05T11:32:33Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel8-pci-dss.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel8-pci-dss.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-pci-dss.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-pci-dss","homepage":"https://github.com/complianceascode/content","size":344,"stargazers_count":22,"watchers_count":22,"language":null,"has_issues":false,"has_projects":true,"has_downloads":false,"has_wiki":false,"has_pages":false,"forks_count":15,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":15,"open_issues":0,"watchers":22,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":186077179,"node_id":"MDEwOlJlcG9zaXRvcnkxODYwNzcxNzk=","name":"ansible-role-rhel8-rht-ccp","full_name":"RedHatOfficial/ansible-role-rhel8-rht-ccp","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-rht-ccp","description":"Red + Hat Corporate Profile for Certified Cloud Providers (RH CCP) - Ansible role + generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-rht-ccp/deployments","created_at":"2019-05-11T02:12:06Z","updated_at":"2021-12-10T01:46:06Z","pushed_at":"2022-10-05T11:32:38Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel8-rht-ccp.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel8-rht-ccp.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-rht-ccp.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-rht-ccp","homepage":"https://github.com/complianceascode/content","size":113,"stargazers_count":5,"watchers_count":5,"language":null,"has_issues":false,"has_projects":true,"has_downloads":false,"has_wiki":false,"has_pages":false,"forks_count":5,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":5,"open_issues":0,"watchers":5,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":186610749,"node_id":"MDEwOlJlcG9zaXRvcnkxODY2MTA3NDk=","name":"ansible-role-red_hat_utility_modules","full_name":"RedHatOfficial/ansible-role-red_hat_utility_modules","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-red_hat_utility_modules","description":"An + Ansible role that contains re-useable miscellaneous utility modules for various + Red Hat tools and products.","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-red_hat_utility_modules/deployments","created_at":"2019-05-14T11:45:11Z","updated_at":"2022-03-26T00:43:15Z","pushed_at":"2020-02-21T14:02:30Z","git_url":"git://github.com/RedHatOfficial/ansible-role-red_hat_utility_modules.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-red_hat_utility_modules.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-red_hat_utility_modules.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-red_hat_utility_modules","homepage":null,"size":43,"stargazers_count":7,"watchers_count":7,"language":"Python","has_issues":true,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":5,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":{"key":"gpl-3.0","name":"GNU + General Public License v3.0","spdx_id":"GPL-3.0","url":"https://api.github.com/licenses/gpl-3.0","node_id":"MDc6TGljZW5zZTk="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":5,"open_issues":1,"watchers":7,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":187288521,"node_id":"MDEwOlJlcG9zaXRvcnkxODcyODg1MjE=","name":"ansible-role-rhv4-rhvh-stig","full_name":"RedHatOfficial/ansible-role-rhv4-rhvh-stig","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhv4-rhvh-stig","description":"[DRAFT] + DISA STIG for Red Hat Virtualization Host (RHVH) - Ansible role generated + from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-stig/deployments","created_at":"2019-05-17T22:27:23Z","updated_at":"2021-10-13T16:52:28Z","pushed_at":"2021-10-13T16:52:26Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhv4-rhvh-stig.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhv4-rhvh-stig.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhv4-rhvh-stig.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhv4-rhvh-stig","homepage":"https://github.com/complianceascode/content","size":376,"stargazers_count":3,"watchers_count":3,"language":null,"has_issues":false,"has_projects":true,"has_downloads":false,"has_wiki":false,"has_pages":false,"forks_count":2,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":2,"open_issues":0,"watchers":3,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":187288524,"node_id":"MDEwOlJlcG9zaXRvcnkxODcyODg1MjQ=","name":"ansible-role-rhv4-rhvh-vpp","full_name":"RedHatOfficial/ansible-role-rhv4-rhvh-vpp","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhv4-rhvh-vpp","description":"VPP + - Protection Profile for Virtualization v. 1.0 for Red Hat Virtualization + Host (RHVH) - Ansible role generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhv4-rhvh-vpp/deployments","created_at":"2019-05-17T22:27:24Z","updated_at":"2021-10-13T16:52:46Z","pushed_at":"2021-10-13T16:52:45Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhv4-rhvh-vpp.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhv4-rhvh-vpp.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhv4-rhvh-vpp.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhv4-rhvh-vpp","homepage":"https://github.com/complianceascode/content","size":217,"stargazers_count":3,"watchers_count":3,"language":null,"has_issues":false,"has_projects":true,"has_downloads":false,"has_wiki":false,"has_pages":false,"forks_count":4,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":4,"open_issues":0,"watchers":3,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":188247158,"node_id":"MDEwOlJlcG9zaXRvcnkxODgyNDcxNTg=","name":"rh-iconfont","full_name":"RedHatOfficial/rh-iconfont","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/rh-iconfont","description":"The + source for Red Hat''s Icon Font.","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont","forks_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/rh-iconfont/deployments","created_at":"2019-05-23T14:11:20Z","updated_at":"2022-07-26T16:19:28Z","pushed_at":"2022-07-22T13:34:43Z","git_url":"git://github.com/RedHatOfficial/rh-iconfont.git","ssh_url":"git@github.com:RedHatOfficial/rh-iconfont.git","clone_url":"https://github.com/RedHatOfficial/rh-iconfont.git","svn_url":"https://github.com/RedHatOfficial/rh-iconfont","homepage":"","size":9569,"stargazers_count":11,"watchers_count":11,"language":"JavaScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":6,"license":{"key":"mit","name":"MIT + License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":6,"watchers":11,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":195132844,"node_id":"MDEwOlJlcG9zaXRvcnkxOTUxMzI4NDQ=","name":"jbosseap-certifications","full_name":"RedHatOfficial/jbosseap-certifications","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/jbosseap-certifications","description":null,"fork":false,"url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications","forks_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/jbosseap-certifications/deployments","created_at":"2019-07-03T22:14:50Z","updated_at":"2021-07-27T19:17:36Z","pushed_at":"2021-07-27T19:17:33Z","git_url":"git://github.com/RedHatOfficial/jbosseap-certifications.git","ssh_url":"git@github.com:RedHatOfficial/jbosseap-certifications.git","clone_url":"https://github.com/RedHatOfficial/jbosseap-certifications.git","svn_url":"https://github.com/RedHatOfficial/jbosseap-certifications","homepage":null,"size":145,"stargazers_count":1,"watchers_count":1,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"apache-2.0","name":"Apache + License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":2,"open_issues":0,"watchers":1,"default_branch":"EE8","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":211255176,"node_id":"MDEwOlJlcG9zaXRvcnkyMTEyNTUxNzY=","name":"ocp4-vsphere-upi-automation","full_name":"RedHatOfficial/ocp4-vsphere-upi-automation","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ocp4-vsphere-upi-automation","description":"Automates + most of the manual steps of deploying OCP4.x cluster on vSphere","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation","forks_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ocp4-vsphere-upi-automation/deployments","created_at":"2019-09-27T06:53:24Z","updated_at":"2022-10-04T12:41:55Z","pushed_at":"2022-10-12T04:37:07Z","git_url":"git://github.com/RedHatOfficial/ocp4-vsphere-upi-automation.git","ssh_url":"git@github.com:RedHatOfficial/ocp4-vsphere-upi-automation.git","clone_url":"https://github.com/RedHatOfficial/ocp4-vsphere-upi-automation.git","svn_url":"https://github.com/RedHatOfficial/ocp4-vsphere-upi-automation","homepage":"","size":427,"stargazers_count":107,"watchers_count":107,"language":"Jinja","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":86,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":12,"license":{"key":"mit","name":"MIT + License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":86,"open_issues":12,"watchers":107,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":240077479,"node_id":"MDEwOlJlcG9zaXRvcnkyNDAwNzc0Nzk=","name":"ansible-role-rhel8-stig","full_name":"RedHatOfficial/ansible-role-rhel8-stig","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-stig","description":"DISA + STIG for Red Hat Enterprise Linux 8 - Ansible role generated from ComplianceAsCode + Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-stig/deployments","created_at":"2020-02-12T17:50:17Z","updated_at":"2022-08-26T07:51:52Z","pushed_at":"2022-10-05T11:31:39Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel8-stig.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel8-stig.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-stig.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-stig","homepage":"https://github.com/complianceascode/content","size":559,"stargazers_count":43,"watchers_count":43,"language":null,"has_issues":false,"has_projects":true,"has_downloads":false,"has_wiki":false,"has_pages":false,"forks_count":29,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":29,"open_issues":0,"watchers":43,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":254072903,"node_id":"MDEwOlJlcG9zaXRvcnkyNTQwNzI5MDM=","name":"openemr-kube","full_name":"RedHatOfficial/openemr-kube","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/openemr-kube","description":"OpenShift/Kube + deployment info for OpenEMR (https://www.open-emr.org/)","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/openemr-kube","forks_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/openemr-kube/deployments","created_at":"2020-04-08T11:48:49Z","updated_at":"2021-11-17T15:52:42Z","pushed_at":"2021-05-26T16:50:12Z","git_url":"git://github.com/RedHatOfficial/openemr-kube.git","ssh_url":"git@github.com:RedHatOfficial/openemr-kube.git","clone_url":"https://github.com/RedHatOfficial/openemr-kube.git","svn_url":"https://github.com/RedHatOfficial/openemr-kube","homepage":"","size":97,"stargazers_count":10,"watchers_count":10,"language":"Shell","has_issues":true,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":12,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":8,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":12,"open_issues":8,"watchers":10,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":266239778,"node_id":"MDEwOlJlcG9zaXRvcnkyNjYyMzk3Nzg=","name":"CloudCtl","full_name":"RedHatOfficial/CloudCtl","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/CloudCtl","description":null,"fork":false,"url":"https://api.github.com/repos/RedHatOfficial/CloudCtl","forks_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/CloudCtl/deployments","created_at":"2020-05-23T01:20:25Z","updated_at":"2022-04-14T22:27:20Z","pushed_at":"2022-10-06T06:07:29Z","git_url":"git://github.com/RedHatOfficial/CloudCtl.git","ssh_url":"git@github.com:RedHatOfficial/CloudCtl.git","clone_url":"https://github.com/RedHatOfficial/CloudCtl.git","svn_url":"https://github.com/RedHatOfficial/CloudCtl","homepage":null,"size":11505,"stargazers_count":6,"watchers_count":6,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":5,"license":{"key":"gpl-3.0","name":"GNU + General Public License v3.0","spdx_id":"GPL-3.0","url":"https://api.github.com/licenses/gpl-3.0","node_id":"MDc6TGljZW5zZTk="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":5,"watchers":6,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":303685078,"node_id":"MDEwOlJlcG9zaXRvcnkzMDM2ODUwNzg=","name":"open-source-participation-guidelines","full_name":"RedHatOfficial/open-source-participation-guidelines","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/open-source-participation-guidelines","description":"A + community version of Red Hat''s Open Source Participation Guidelines","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines","forks_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/open-source-participation-guidelines/deployments","created_at":"2020-10-13T11:47:03Z","updated_at":"2021-08-02T20:28:40Z","pushed_at":"2021-05-04T12:30:00Z","git_url":"git://github.com/RedHatOfficial/open-source-participation-guidelines.git","ssh_url":"git@github.com:RedHatOfficial/open-source-participation-guidelines.git","clone_url":"https://github.com/RedHatOfficial/open-source-participation-guidelines.git","svn_url":"https://github.com/RedHatOfficial/open-source-participation-guidelines","homepage":null,"size":32,"stargazers_count":6,"watchers_count":6,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":0,"watchers":6,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":322946226,"node_id":"MDEwOlJlcG9zaXRvcnkzMjI5NDYyMjY=","name":"OSPO-Content","full_name":"RedHatOfficial/OSPO-Content","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/OSPO-Content","description":"Public-facing + content repository for Red Hat''s Open Source Program Office.","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content","forks_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/OSPO-Content/deployments","created_at":"2020-12-19T22:05:20Z","updated_at":"2020-12-19T22:07:18Z","pushed_at":"2020-12-19T22:07:16Z","git_url":"git://github.com/RedHatOfficial/OSPO-Content.git","ssh_url":"git@github.com:RedHatOfficial/OSPO-Content.git","clone_url":"https://github.com/RedHatOfficial/OSPO-Content.git","svn_url":"https://github.com/RedHatOfficial/OSPO-Content","homepage":null,"size":4,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"cc0-1.0","name":"Creative + Commons Zero v1.0 Universal","spdx_id":"CC0-1.0","url":"https://api.github.com/licenses/cc0-1.0","node_id":"MDc6TGljZW5zZTY="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":0,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":323251339,"node_id":"MDEwOlJlcG9zaXRvcnkzMjMyNTEzMzk=","name":"centos-faq","full_name":"RedHatOfficial/centos-faq","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/centos-faq","description":"Historical + archive of FAQ previously located at community.redhat.com/centos-faq","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/centos-faq","forks_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/centos-faq/deployments","created_at":"2020-12-21T06:33:46Z","updated_at":"2021-01-04T13:04:20Z","pushed_at":"2020-12-21T06:45:34Z","git_url":"git://github.com/RedHatOfficial/centos-faq.git","ssh_url":"git@github.com:RedHatOfficial/centos-faq.git","clone_url":"https://github.com/RedHatOfficial/centos-faq.git","svn_url":"https://github.com/RedHatOfficial/centos-faq","homepage":null,"size":13,"stargazers_count":1,"watchers_count":1,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":1,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":327020859,"node_id":"MDEwOlJlcG9zaXRvcnkzMjcwMjA4NTk=","name":"ksc","full_name":"RedHatOfficial/ksc","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ksc","description":null,"fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ksc","forks_url":"https://api.github.com/repos/RedHatOfficial/ksc/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ksc/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ksc/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ksc/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ksc/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ksc/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ksc/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ksc/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ksc/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ksc/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ksc/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ksc/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ksc/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ksc/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ksc/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ksc/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ksc/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ksc/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ksc/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ksc/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ksc/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ksc/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ksc/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ksc/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ksc/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ksc/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ksc/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ksc/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ksc/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ksc/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ksc/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ksc/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ksc/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ksc/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ksc/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ksc/deployments","created_at":"2021-01-05T14:19:04Z","updated_at":"2021-12-29T17:14:29Z","pushed_at":"2022-06-13T08:49:11Z","git_url":"git://github.com/RedHatOfficial/ksc.git","ssh_url":"git@github.com:RedHatOfficial/ksc.git","clone_url":"https://github.com/RedHatOfficial/ksc.git","svn_url":"https://github.com/RedHatOfficial/ksc","homepage":null,"size":112,"stargazers_count":1,"watchers_count":1,"language":"Python","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":{"key":"gpl-2.0","name":"GNU + General Public License v2.0","spdx_id":"GPL-2.0","url":"https://api.github.com/licenses/gpl-2.0","node_id":"MDc6TGljZW5zZTg="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":2,"open_issues":1,"watchers":1,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":347184790,"node_id":"MDEwOlJlcG9zaXRvcnkzNDcxODQ3OTA=","name":"contributor.link.github.io","full_name":"RedHatOfficial/contributor.link.github.io","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/contributor.link.github.io","description":null,"fork":false,"url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io","forks_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/contributor.link.github.io/deployments","created_at":"2021-03-12T20:06:14Z","updated_at":"2021-04-02T06:40:38Z","pushed_at":"2021-03-15T18:21:30Z","git_url":"git://github.com/RedHatOfficial/contributor.link.github.io.git","ssh_url":"git@github.com:RedHatOfficial/contributor.link.github.io.git","clone_url":"https://github.com/RedHatOfficial/contributor.link.github.io.git","svn_url":"https://github.com/RedHatOfficial/contributor.link.github.io","homepage":null,"size":4,"stargazers_count":2,"watchers_count":2,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":2,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":358323398,"node_id":"MDEwOlJlcG9zaXRvcnkzNTgzMjMzOTg=","name":"creative","full_name":"RedHatOfficial/creative","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/creative","description":"Open + Studio Community: Open Source & Creativity Advocacy Committee","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/creative","forks_url":"https://api.github.com/repos/RedHatOfficial/creative/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/creative/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/creative/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/creative/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/creative/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/creative/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/creative/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/creative/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/creative/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/creative/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/creative/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/creative/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/creative/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/creative/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/creative/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/creative/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/creative/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/creative/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/creative/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/creative/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/creative/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/creative/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/creative/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/creative/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/creative/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/creative/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/creative/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/creative/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/creative/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/creative/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/creative/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/creative/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/creative/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/creative/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/creative/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/creative/deployments","created_at":"2021-04-15T16:24:13Z","updated_at":"2022-09-29T17:18:56Z","pushed_at":"2022-10-04T17:24:57Z","git_url":"git://github.com/RedHatOfficial/creative.git","ssh_url":"git@github.com:RedHatOfficial/creative.git","clone_url":"https://github.com/RedHatOfficial/creative.git","svn_url":"https://github.com/RedHatOfficial/creative","homepage":null,"size":4950,"stargazers_count":7,"watchers_count":7,"language":"HTML","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":12,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":12,"watchers":7,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":377614114,"node_id":"MDEwOlJlcG9zaXRvcnkzNzc2MTQxMTQ=","name":"ansible-role-rhel8-anssi_bp28_enhanced","full_name":"RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced","description":"ANSSI-BP-028 + (enhanced) - Ansible role generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced/deployments","created_at":"2021-06-16T20:04:33Z","updated_at":"2022-08-18T12:52:23Z","pushed_at":"2022-10-05T11:31:46Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-anssi_bp28_enhanced","homepage":"https://github.com/complianceascode/content","size":267,"stargazers_count":2,"watchers_count":2,"language":null,"has_issues":false,"has_projects":true,"has_downloads":false,"has_wiki":false,"has_pages":false,"forks_count":3,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":3,"open_issues":0,"watchers":2,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":377614116,"node_id":"MDEwOlJlcG9zaXRvcnkzNzc2MTQxMTY=","name":"ansible-role-rhel8-anssi_bp28_high","full_name":"RedHatOfficial/ansible-role-rhel8-anssi_bp28_high","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high","description":"ANSSI-BP-028 + (high) - Ansible role generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high/deployments","created_at":"2021-06-16T20:04:34Z","updated_at":"2021-12-10T01:47:12Z","pushed_at":"2022-10-05T11:31:52Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel8-anssi_bp28_high.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-anssi_bp28_high","homepage":"https://github.com/complianceascode/content","size":281,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_projects":true,"has_downloads":false,"has_wiki":false,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":377614121,"node_id":"MDEwOlJlcG9zaXRvcnkzNzc2MTQxMjE=","name":"ansible-role-rhel8-anssi_bp28_intermediary","full_name":"RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary","description":"ANSSI-BP-028 + (intermediary) - Ansible role generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary/deployments","created_at":"2021-06-16T20:04:35Z","updated_at":"2021-12-17T09:46:02Z","pushed_at":"2022-10-05T11:31:57Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-anssi_bp28_intermediary","homepage":"https://github.com/complianceascode/content","size":279,"stargazers_count":1,"watchers_count":1,"language":null,"has_issues":false,"has_projects":true,"has_downloads":false,"has_wiki":false,"has_pages":false,"forks_count":2,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":2,"open_issues":0,"watchers":1,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":377614127,"node_id":"MDEwOlJlcG9zaXRvcnkzNzc2MTQxMjc=","name":"ansible-role-rhel8-anssi_bp28_minimal","full_name":"RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal","description":"ANSSI-BP-028 + (minimal) - Ansible role generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal/deployments","created_at":"2021-06-16T20:04:36Z","updated_at":"2022-05-01T12:30:23Z","pushed_at":"2022-10-05T11:32:02Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-anssi_bp28_minimal","homepage":"https://github.com/complianceascode/content","size":117,"stargazers_count":1,"watchers_count":1,"language":null,"has_issues":false,"has_projects":true,"has_downloads":false,"has_wiki":false,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":0,"watchers":1,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":377614131,"node_id":"MDEwOlJlcG9zaXRvcnkzNzc2MTQxMzE=","name":"ansible-role-rhel8-cis","full_name":"RedHatOfficial/ansible-role-rhel8-cis","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-cis","description":"CIS + Red Hat Enterprise Linux 8 Benchmark for Level 2 - Server - Ansible role generated + from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel8-cis/deployments","created_at":"2021-06-16T20:04:37Z","updated_at":"2022-10-07T00:32:53Z","pushed_at":"2022-10-05T11:32:09Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel8-cis.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel8-cis.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-cis.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel8-cis","homepage":"https://github.com/complianceascode/content","size":547,"stargazers_count":18,"watchers_count":18,"language":null,"has_issues":false,"has_projects":true,"has_downloads":false,"has_wiki":false,"has_pages":false,"forks_count":7,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":7,"open_issues":0,"watchers":18,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":380378744,"node_id":"MDEwOlJlcG9zaXRvcnkzODAzNzg3NDQ=","name":"iconset","full_name":"RedHatOfficial/iconset","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/iconset","description":"Open + source icons","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/iconset","forks_url":"https://api.github.com/repos/RedHatOfficial/iconset/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/iconset/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/iconset/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/iconset/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/iconset/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/iconset/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/iconset/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/iconset/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/iconset/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/iconset/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/iconset/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/iconset/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/iconset/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/iconset/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/iconset/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/iconset/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/iconset/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/iconset/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/iconset/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/iconset/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/iconset/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/iconset/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/iconset/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/iconset/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/iconset/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/iconset/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/iconset/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/iconset/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/iconset/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/iconset/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/iconset/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/iconset/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/iconset/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/iconset/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/iconset/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/iconset/deployments","created_at":"2021-06-26T00:05:44Z","updated_at":"2021-06-26T00:20:55Z","pushed_at":"2021-07-06T19:48:26Z","git_url":"git://github.com/RedHatOfficial/iconset.git","ssh_url":"git@github.com:RedHatOfficial/iconset.git","clone_url":"https://github.com/RedHatOfficial/iconset.git","svn_url":"https://github.com/RedHatOfficial/iconset","homepage":null,"size":2,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":0,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":387492287,"node_id":"MDEwOlJlcG9zaXRvcnkzODc0OTIyODc=","name":"ansible-role-rhel7-anssi_nt28_enhanced","full_name":"RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced","description":"ANSSI-BP-028 + (enhanced) - Ansible role generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced/deployments","created_at":"2021-07-19T14:27:19Z","updated_at":"2021-12-17T09:38:53Z","pushed_at":"2021-12-10T01:49:18Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-anssi_nt28_enhanced","homepage":"https://github.com/complianceascode/content","size":69,"stargazers_count":2,"watchers_count":2,"language":null,"has_issues":false,"has_projects":true,"has_downloads":false,"has_wiki":false,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":0,"watchers":2,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":387492293,"node_id":"MDEwOlJlcG9zaXRvcnkzODc0OTIyOTM=","name":"ansible-role-rhel7-anssi_nt28_high","full_name":"RedHatOfficial/ansible-role-rhel7-anssi_nt28_high","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high","description":"ANSSI-BP-028 + (high) - Ansible role generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high/deployments","created_at":"2021-07-19T14:27:20Z","updated_at":"2021-12-10T01:49:13Z","pushed_at":"2021-12-10T01:49:12Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel7-anssi_nt28_high.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-anssi_nt28_high","homepage":"https://github.com/complianceascode/content","size":73,"stargazers_count":1,"watchers_count":1,"language":null,"has_issues":false,"has_projects":true,"has_downloads":false,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":1,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":387492298,"node_id":"MDEwOlJlcG9zaXRvcnkzODc0OTIyOTg=","name":"ansible-role-rhel7-anssi_nt28_intermediary","full_name":"RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary","description":"ANSSI-BP-028 + (intermediary) - Ansible role generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary/deployments","created_at":"2021-07-19T14:27:21Z","updated_at":"2021-12-17T09:37:03Z","pushed_at":"2021-12-10T01:49:07Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-anssi_nt28_intermediary","homepage":"https://github.com/complianceascode/content","size":67,"stargazers_count":2,"watchers_count":2,"language":null,"has_issues":false,"has_projects":true,"has_downloads":false,"has_wiki":false,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":0,"watchers":2,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":387492309,"node_id":"MDEwOlJlcG9zaXRvcnkzODc0OTIzMDk=","name":"ansible-role-rhel7-anssi_nt28_minimal","full_name":"RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal","description":"ANSSI-BP-028 + (minimal) - Ansible role generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal/deployments","created_at":"2021-07-19T14:27:22Z","updated_at":"2021-12-10T01:49:02Z","pushed_at":"2021-12-10T01:49:00Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-anssi_nt28_minimal","homepage":"https://github.com/complianceascode/content","size":23,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_projects":true,"has_downloads":false,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":387492314,"node_id":"MDEwOlJlcG9zaXRvcnkzODc0OTIzMTQ=","name":"ansible-role-rhel7-cis","full_name":"RedHatOfficial/ansible-role-rhel7-cis","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-cis","description":"CIS + Red Hat Enterprise Linux 7 Benchmark for Level 2 - Server - Ansible role generated + from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel7-cis/deployments","created_at":"2021-07-19T14:27:23Z","updated_at":"2022-09-30T06:25:34Z","pushed_at":"2022-10-05T11:25:46Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel7-cis.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel7-cis.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-cis.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel7-cis","homepage":"https://github.com/complianceascode/content","size":471,"stargazers_count":4,"watchers_count":4,"language":null,"has_issues":false,"has_projects":true,"has_downloads":false,"has_wiki":false,"has_pages":false,"forks_count":7,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":7,"open_issues":0,"watchers":4,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":419953080,"node_id":"R_kgDOGQf5uA","name":"redhatofficial.compliance_as_code","full_name":"RedHatOfficial/redhatofficial.compliance_as_code","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/redhatofficial.compliance_as_code","description":"Compliance + as Code derived Ansible collection","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code","forks_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/redhatofficial.compliance_as_code/deployments","created_at":"2021-10-22T03:25:25Z","updated_at":"2021-10-22T03:25:29Z","pushed_at":"2021-10-22T03:25:26Z","git_url":"git://github.com/RedHatOfficial/redhatofficial.compliance_as_code.git","ssh_url":"git@github.com:RedHatOfficial/redhatofficial.compliance_as_code.git","clone_url":"https://github.com/RedHatOfficial/redhatofficial.compliance_as_code.git","svn_url":"https://github.com/RedHatOfficial/redhatofficial.compliance_as_code","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":0,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":470300761,"node_id":"R_kgDOHAg4WQ","name":"jakartaee-tck","full_name":"RedHatOfficial/jakartaee-tck","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/jakartaee-tck","description":"Jakartaee-tck","fork":true,"url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck","forks_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/jakartaee-tck/deployments","created_at":"2022-03-15T19:19:10Z","updated_at":"2022-03-11T08:32:32Z","pushed_at":"2022-03-15T18:11:13Z","git_url":"git://github.com/RedHatOfficial/jakartaee-tck.git","ssh_url":"git@github.com:RedHatOfficial/jakartaee-tck.git","clone_url":"https://github.com/RedHatOfficial/jakartaee-tck.git","svn_url":"https://github.com/RedHatOfficial/jakartaee-tck","homepage":null,"size":76650,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":546417391,"node_id":"R_kgDOIJGq7w","name":"ansible-role-rhel9-stig","full_name":"RedHatOfficial/ansible-role-rhel9-stig","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-stig","description":"DRAFT + DISA STIG for Red Hat Enterprise Linux 9 - Ansible role generated from ComplianceAsCode + Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-stig/deployments","created_at":"2022-10-06T03:34:50Z","updated_at":"2022-10-06T03:45:39Z","pushed_at":"2022-10-06T03:45:40Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel9-stig.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel9-stig.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-stig.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-stig","homepage":"https://github.com/complianceascode/content","size":125,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":0,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":546421874,"node_id":"R_kgDOIJG8cg","name":"ansible-role-rhel9-anssi_bp28_enhanced","full_name":"RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced","description":"ANSSI-BP-028 + (enhanced) - Ansible role generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced/deployments","created_at":"2022-10-06T03:48:13Z","updated_at":"2022-10-06T03:55:15Z","pushed_at":"2022-10-06T03:55:16Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-anssi_bp28_enhanced","homepage":"https://github.com/complianceascode/content","size":43,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":0,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":546421915,"node_id":"R_kgDOIJG8mw","name":"ansible-role-rhel9-anssi_bp28_high","full_name":"RedHatOfficial/ansible-role-rhel9-anssi_bp28_high","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high","description":"ANSSI-BP-028 + (high) - Ansible role generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high/deployments","created_at":"2022-10-06T03:48:22Z","updated_at":"2022-10-06T03:55:21Z","pushed_at":"2022-10-06T03:55:21Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel9-anssi_bp28_high.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-anssi_bp28_high","homepage":"https://github.com/complianceascode/content","size":44,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":0,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":546421966,"node_id":"R_kgDOIJG8zg","name":"ansible-role-rhel9-anssi_bp28_intermediary","full_name":"RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary","description":"ANSSI-BP-028 + (intermediary) - Ansible role generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary/deployments","created_at":"2022-10-06T03:48:31Z","updated_at":"2022-10-06T03:55:27Z","pushed_at":"2022-10-06T03:55:28Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-anssi_bp28_intermediary","homepage":"https://github.com/complianceascode/content","size":41,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":0,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":546421998,"node_id":"R_kgDOIJG87g","name":"ansible-role-rhel9-anssi_bp28_minimal","full_name":"RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal","description":"ANSSI-BP-028 + (minimal) - Ansible role generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal/deployments","created_at":"2022-10-06T03:48:40Z","updated_at":"2022-10-06T03:55:33Z","pushed_at":"2022-10-06T03:55:34Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-anssi_bp28_minimal","homepage":"https://github.com/complianceascode/content","size":25,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":0,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":546422031,"node_id":"R_kgDOIJG9Dw","name":"ansible-role-rhel9-cis","full_name":"RedHatOfficial/ansible-role-rhel9-cis","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-cis","description":"DRAFT + CIS Red Hat Enterprise Linux 9 Benchmark for Level 2 - Server - Ansible role + generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cis/deployments","created_at":"2022-10-06T03:48:47Z","updated_at":"2022-10-06T03:55:40Z","pushed_at":"2022-10-06T03:55:41Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel9-cis.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel9-cis.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-cis.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-cis","homepage":"https://github.com/complianceascode/content","size":76,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":0,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":546422101,"node_id":"R_kgDOIJG9VQ","name":"ansible-role-rhel9-hipaa","full_name":"RedHatOfficial/ansible-role-rhel9-hipaa","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-hipaa","description":"Health + Insurance Portability and Accountability Act (HIPAA) - Ansible role generated + from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-hipaa/deployments","created_at":"2022-10-06T03:49:02Z","updated_at":"2022-10-06T03:55:50Z","pushed_at":"2022-10-06T03:55:50Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel9-hipaa.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel9-hipaa.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-hipaa.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-hipaa","homepage":"https://github.com/complianceascode/content","size":55,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":0,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":546422133,"node_id":"R_kgDOIJG9dQ","name":"ansible-role-rhel9-ospp","full_name":"RedHatOfficial/ansible-role-rhel9-ospp","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-ospp","description":"Protection + Profile for General Purpose Operating Systems - Ansible role generated from + ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ospp/deployments","created_at":"2022-10-06T03:49:09Z","updated_at":"2022-10-06T03:55:55Z","pushed_at":"2022-10-06T03:55:56Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel9-ospp.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel9-ospp.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-ospp.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-ospp","homepage":"https://github.com/complianceascode/content","size":36,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":0,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":546422175,"node_id":"R_kgDOIJG9nw","name":"ansible-role-rhel9-pci-dss","full_name":"RedHatOfficial/ansible-role-rhel9-pci-dss","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-pci-dss","description":"PCI-DSS + v3.2.1 Control Baseline for Red Hat Enterprise Linux 9 - Ansible role generated + from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-pci-dss/deployments","created_at":"2022-10-06T03:49:17Z","updated_at":"2022-10-06T03:56:02Z","pushed_at":"2022-10-06T03:56:03Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel9-pci-dss.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel9-pci-dss.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-pci-dss.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-pci-dss","homepage":"https://github.com/complianceascode/content","size":62,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":0,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":546422209,"node_id":"R_kgDOIJG9wQ","name":"ansible-role-rhel9-cui","full_name":"RedHatOfficial/ansible-role-rhel9-cui","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-cui","description":"DRAFT + Unclassified Information in Non-federal Information Systems and Organizations + (NIST 800-171) - Ansible role generated from ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-cui/deployments","created_at":"2022-10-06T03:49:24Z","updated_at":"2022-10-06T03:56:08Z","pushed_at":"2022-10-06T03:56:09Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel9-cui.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel9-cui.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-cui.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-cui","homepage":"https://github.com/complianceascode/content","size":36,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":0,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":546575913,"node_id":"R_kgDOIJQWKQ","name":"ansible-role-rhel9-e8","full_name":"RedHatOfficial/ansible-role-rhel9-e8","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-e8","description":"Australian + Cyber Security Centre (ACSC) Essential Eight - Ansible role generated from + ComplianceAsCode Project","fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-e8/deployments","created_at":"2022-10-06T09:48:39Z","updated_at":"2022-10-06T09:54:30Z","pushed_at":"2022-10-06T09:54:31Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel9-e8.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel9-e8.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-e8.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-e8","homepage":"https://github.com/complianceascode/content","size":32,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":0,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}},{"id":546576020,"node_id":"R_kgDOIJQWlA","name":"ansible-role-rhel9-ism","full_name":"RedHatOfficial/ansible-role-rhel9-ism","private":false,"owner":{"login":"RedHatOfficial","id":33972111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjMzOTcyMTEx","avatar_url":"https://avatars.githubusercontent.com/u/33972111?v=4","gravatar_id":"","url":"https://api.github.com/users/RedHatOfficial","html_url":"https://github.com/RedHatOfficial","followers_url":"https://api.github.com/users/RedHatOfficial/followers","following_url":"https://api.github.com/users/RedHatOfficial/following{/other_user}","gists_url":"https://api.github.com/users/RedHatOfficial/gists{/gist_id}","starred_url":"https://api.github.com/users/RedHatOfficial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RedHatOfficial/subscriptions","organizations_url":"https://api.github.com/users/RedHatOfficial/orgs","repos_url":"https://api.github.com/users/RedHatOfficial/repos","events_url":"https://api.github.com/users/RedHatOfficial/events{/privacy}","received_events_url":"https://api.github.com/users/RedHatOfficial/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-ism","description":null,"fork":false,"url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism","forks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/forks","keys_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/teams","hooks_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/hooks","issue_events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/issues/events{/number}","events_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/events","assignees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/assignees{/user}","branches_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/branches{/branch}","tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/tags","blobs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/git/refs{/sha}","trees_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/statuses/{sha}","languages_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/languages","stargazers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/stargazers","contributors_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/contributors","subscribers_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/subscribers","subscription_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/subscription","commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/commits{/sha}","git_commits_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/git/commits{/sha}","comments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/comments{/number}","issue_comment_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/issues/comments{/number}","contents_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/contents/{+path}","compare_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/merges","archive_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/downloads","issues_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/issues{/number}","pulls_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/pulls{/number}","milestones_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/milestones{/number}","notifications_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/labels{/name}","releases_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/releases{/id}","deployments_url":"https://api.github.com/repos/RedHatOfficial/ansible-role-rhel9-ism/deployments","created_at":"2022-10-06T09:48:55Z","updated_at":"2022-10-06T10:14:43Z","pushed_at":"2022-10-06T09:51:36Z","git_url":"git://github.com/RedHatOfficial/ansible-role-rhel9-ism.git","ssh_url":"git@github.com:RedHatOfficial/ansible-role-rhel9-ism.git","clone_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-ism.git","svn_url":"https://github.com/RedHatOfficial/ansible-role-rhel9-ism","homepage":null,"size":2,"stargazers_count":1,"watchers_count":1,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":1,"default_branch":"main","permissions":{"admin":false,"maintain":false,"push":false,"triage":false,"pull":true}}]' + recorded_at: Wed, 12 Oct 2022 17:58:39 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/fixtures/users/RedHatOfficial.yml b/spec/fixtures/users/RedHatOfficial.yml new file mode 100644 index 0000000..a2004b1 --- /dev/null +++ b/spec/fixtures/users/RedHatOfficial.yml @@ -0,0 +1,81 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.github.com/orgs/RedHatOfficial/members?per_page=100 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json + User-Agent: + - Octokit Ruby Gem 4.25.1 + Content-Type: + - application/json + Authorization: + - token + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - GitHub.com + Date: + - Wed, 12 Oct 2022 19:16:58 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Cache-Control: + - private, max-age=60, s-maxage=60 + Vary: + - Accept, Authorization, Cookie, X-GitHub-OTP + - Accept-Encoding, Accept, X-Requested-With + Etag: + - W/"ea3d08630d27ec0e20a6ad39d14929bb11c3a1bed461d3781c6c36a8f72b677b" + X-Oauth-Scopes: + - public_repo + X-Accepted-Oauth-Scopes: + - '' + X-Github-Media-Type: + - github.v3; format=json + X-Ratelimit-Limit: + - '5000' + X-Ratelimit-Remaining: + - '4997' + X-Ratelimit-Reset: + - '1665605780' + X-Ratelimit-Used: + - '3' + X-Ratelimit-Resource: + - core + Access-Control-Expose-Headers: + - ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, + X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, + X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, + X-GitHub-Request-Id, Deprecation, Sunset + Access-Control-Allow-Origin: + - "*" + Strict-Transport-Security: + - max-age=31536000; includeSubdomains; preload + X-Frame-Options: + - deny + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - '0' + Referrer-Policy: + - origin-when-cross-origin, strict-origin-when-cross-origin + Content-Security-Policy: + - default-src 'none' + X-Github-Request-Id: + - F41C:45D2:5A7AEB:B83CE0:634712AA + body: + encoding: ASCII-8BIT + string: '[{"login":"vcr","id":1998949,"node_id":"MDQ6VXNlcjE5OTg5NDk=","avatar_url":"https://avatars.githubusercontent.com/u/1998949?v=4","gravatar_id":"","url":"https://api.github.com/users/vcr","html_url":"https://github.com/vcr","followers_url":"https://api.github.com/users/vcr/followers","following_url":"https://api.github.com/users/vcr/following{/other_user}","gists_url":"https://api.github.com/users/vcr/gists{/gist_id}","starred_url":"https://api.github.com/users/vcr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vcr/subscriptions","organizations_url":"https://api.github.com/users/vcr/orgs","repos_url":"https://api.github.com/users/vcr/repos","events_url":"https://api.github.com/users/vcr/events{/privacy}","received_events_url":"https://api.github.com/users/vcr/received_events","type":"User","site_admin":false},{"login":"dmc5179","id":2169791,"node_id":"MDQ6VXNlcjIxNjk3OTE=","avatar_url":"https://avatars.githubusercontent.com/u/2169791?v=4","gravatar_id":"","url":"https://api.github.com/users/dmc5179","html_url":"https://github.com/dmc5179","followers_url":"https://api.github.com/users/dmc5179/followers","following_url":"https://api.github.com/users/dmc5179/following{/other_user}","gists_url":"https://api.github.com/users/dmc5179/gists{/gist_id}","starred_url":"https://api.github.com/users/dmc5179/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmc5179/subscriptions","organizations_url":"https://api.github.com/users/dmc5179/orgs","repos_url":"https://api.github.com/users/dmc5179/repos","events_url":"https://api.github.com/users/dmc5179/events{/privacy}","received_events_url":"https://api.github.com/users/dmc5179/received_events","type":"User","site_admin":false},{"login":"eschabell","id":437001,"node_id":"MDQ6VXNlcjQzNzAwMQ==","avatar_url":"https://avatars.githubusercontent.com/u/437001?v=4","gravatar_id":"","url":"https://api.github.com/users/eschabell","html_url":"https://github.com/eschabell","followers_url":"https://api.github.com/users/eschabell/followers","following_url":"https://api.github.com/users/eschabell/following{/other_user}","gists_url":"https://api.github.com/users/eschabell/gists{/gist_id}","starred_url":"https://api.github.com/users/eschabell/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eschabell/subscriptions","organizations_url":"https://api.github.com/users/eschabell/orgs","repos_url":"https://api.github.com/users/eschabell/repos","events_url":"https://api.github.com/users/eschabell/events{/privacy}","received_events_url":"https://api.github.com/users/eschabell/received_events","type":"User","site_admin":false},{"login":"Fryguy","id":52120,"node_id":"MDQ6VXNlcjUyMTIw","avatar_url":"https://avatars.githubusercontent.com/u/52120?v=4","gravatar_id":"","url":"https://api.github.com/users/Fryguy","html_url":"https://github.com/Fryguy","followers_url":"https://api.github.com/users/Fryguy/followers","following_url":"https://api.github.com/users/Fryguy/following{/other_user}","gists_url":"https://api.github.com/users/Fryguy/gists{/gist_id}","starred_url":"https://api.github.com/users/Fryguy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Fryguy/subscriptions","organizations_url":"https://api.github.com/users/Fryguy/orgs","repos_url":"https://api.github.com/users/Fryguy/repos","events_url":"https://api.github.com/users/Fryguy/events{/privacy}","received_events_url":"https://api.github.com/users/Fryguy/received_events","type":"User","site_admin":false},{"login":"starryeyez024","id":456863,"node_id":"MDQ6VXNlcjQ1Njg2Mw==","avatar_url":"https://avatars.githubusercontent.com/u/456863?v=4","gravatar_id":"","url":"https://api.github.com/users/starryeyez024","html_url":"https://github.com/starryeyez024","followers_url":"https://api.github.com/users/starryeyez024/followers","following_url":"https://api.github.com/users/starryeyez024/following{/other_user}","gists_url":"https://api.github.com/users/starryeyez024/gists{/gist_id}","starred_url":"https://api.github.com/users/starryeyez024/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/starryeyez024/subscriptions","organizations_url":"https://api.github.com/users/starryeyez024/orgs","repos_url":"https://api.github.com/users/starryeyez024/repos","events_url":"https://api.github.com/users/starryeyez024/events{/privacy}","received_events_url":"https://api.github.com/users/starryeyez024/received_events","type":"User","site_admin":false},{"login":"suehle","id":2934157,"node_id":"MDQ6VXNlcjI5MzQxNTc=","avatar_url":"https://avatars.githubusercontent.com/u/2934157?v=4","gravatar_id":"","url":"https://api.github.com/users/suehle","html_url":"https://github.com/suehle","followers_url":"https://api.github.com/users/suehle/followers","following_url":"https://api.github.com/users/suehle/following{/other_user}","gists_url":"https://api.github.com/users/suehle/gists{/gist_id}","starred_url":"https://api.github.com/users/suehle/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/suehle/subscriptions","organizations_url":"https://api.github.com/users/suehle/orgs","repos_url":"https://api.github.com/users/suehle/repos","events_url":"https://api.github.com/users/suehle/events{/privacy}","received_events_url":"https://api.github.com/users/suehle/received_events","type":"User","site_admin":false}]' + recorded_at: Wed, 12 Oct 2022 19:16:58 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/github/contributor_spec.rb b/spec/github/contributor_spec.rb new file mode 100644 index 0000000..d3f485a --- /dev/null +++ b/spec/github/contributor_spec.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe GitHub::Contributor do + pending '<=>' + pending 'eql' + pending 'to_s' +end diff --git a/spec/github/contributors_spec.rb b/spec/github/contributors_spec.rb new file mode 100644 index 0000000..375b766 --- /dev/null +++ b/spec/github/contributors_spec.rb @@ -0,0 +1,15 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe GitHub::Contributors do + pending 'humans' + pending 'members' + pending 'contractors' + pending 'external' + pending 'unknown' + pending 'all' + pending 'all_members' + pending 'all_external' + pending 'all_external_percent' +end diff --git a/spec/github/data_spec.rb b/spec/github/data_spec.rb new file mode 100644 index 0000000..38d234f --- /dev/null +++ b/spec/github/data_spec.rb @@ -0,0 +1,13 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe GitHub::Data do + pending 'members' + pending 'contractors' + pending 'external_users' + pending 'bots' + pending 'companies' + pending 'all_members' + pending 'all_external' +end diff --git a/spec/github/issue_spec.rb b/spec/github/issue_spec.rb new file mode 100644 index 0000000..058a541 --- /dev/null +++ b/spec/github/issue_spec.rb @@ -0,0 +1,8 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe GitHub::Issue do + pending 'short_url' + pending 'to_s' +end diff --git a/spec/github/issues_spec.rb b/spec/github/issues_spec.rb new file mode 100644 index 0000000..29768f0 --- /dev/null +++ b/spec/github/issues_spec.rb @@ -0,0 +1,8 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe GitHub::Issues do + pending 'labels' + pending 'repos' +end diff --git a/spec/github/organization_spec.rb b/spec/github/organization_spec.rb new file mode 100644 index 0000000..c9c8f24 --- /dev/null +++ b/spec/github/organization_spec.rb @@ -0,0 +1,24 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe GitHub::Organization do + subject do + GitHub::Organization.new('RedHatOfficial') + end + + it 'info', vcr: { cassette_name: 'orgs/RedHatOfficial' } do + expect(subject.info).to eq [ + 'name: Red Hat', + 'description: The official GitHub account for Red Hat (VCR).', + 'url: https://api.github.com/orgs/RedHatOfficial', + 'repos: 83' + ].join("\n") + end + + pending 'org' + pending 'repos' + pending 'members' + pending 'pull_requests' + pending 'issues' +end diff --git a/spec/github/pull_request_spec.rb b/spec/github/pull_request_spec.rb new file mode 100644 index 0000000..0dff2f1 --- /dev/null +++ b/spec/github/pull_request_spec.rb @@ -0,0 +1,8 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe GitHub::PullRequest do + pending 'short_url' + pending 'to_s' +end diff --git a/spec/github/pull_requests_spec.rb b/spec/github/pull_requests_spec.rb new file mode 100644 index 0000000..b8f1d71 --- /dev/null +++ b/spec/github/pull_requests_spec.rb @@ -0,0 +1,16 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe GitHub::PullRequests do + pending 'contributors' + pending 'members' + pending 'contractors' + pending 'external' + pending 'unknown' + pending '[]' + pending 'all' + pending 'internal' + pending 'all_external' + pending 'all_external_percent' +end diff --git a/spec/github/rate_limited_spec.rb b/spec/github/rate_limited_spec.rb new file mode 100644 index 0000000..c3ef160 --- /dev/null +++ b/spec/github/rate_limited_spec.rb @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe GitHub::RateLimited do + pending 'rate_limited' +end diff --git a/spec/github/repos_spec.rb b/spec/github/repos_spec.rb new file mode 100644 index 0000000..1afef53 --- /dev/null +++ b/spec/github/repos_spec.rb @@ -0,0 +1,6 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe GitHub::Repos do +end diff --git a/spec/github/user_spec.rb b/spec/github/user_spec.rb new file mode 100644 index 0000000..c1007bf --- /dev/null +++ b/spec/github/user_spec.rb @@ -0,0 +1,6 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe GitHub::User do +end diff --git a/spec/github/users_spec.rb b/spec/github/users_spec.rb new file mode 100644 index 0000000..612f9dc --- /dev/null +++ b/spec/github/users_spec.rb @@ -0,0 +1,6 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe GitHub::Users do +end diff --git a/spec/project/commands/contributors_spec.rb b/spec/project/commands/contributors_spec.rb new file mode 100644 index 0000000..0a03a7d --- /dev/null +++ b/spec/project/commands/contributors_spec.rb @@ -0,0 +1,6 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe 'project contributors' do +end diff --git a/spec/project/commands/issues_spec.rb b/spec/project/commands/issues_spec.rb new file mode 100644 index 0000000..e15a677 --- /dev/null +++ b/spec/project/commands/issues_spec.rb @@ -0,0 +1,6 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe 'project issues' do +end diff --git a/spec/project/commands/members_spec.rb b/spec/project/commands/members_spec.rb new file mode 100644 index 0000000..9554209 --- /dev/null +++ b/spec/project/commands/members_spec.rb @@ -0,0 +1,6 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe 'project members' do +end diff --git a/spec/project/commands/org_spec.rb b/spec/project/commands/org_spec.rb new file mode 100644 index 0000000..be86d31 --- /dev/null +++ b/spec/project/commands/org_spec.rb @@ -0,0 +1,25 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe 'project org' do + include_context 'command line' + + it 'info' do + expect(`"#{project}" --no-cache --vcr-cassette-name=orgs/RedHatOfficial --org RedHatOfficial org info`.strip).to eq [ + 'name: Red Hat', + 'description: The official GitHub account for Red Hat (VCR).', + 'url: https://api.github.com/orgs/RedHatOfficial', + 'repos: 83' + ].join("\n") + end + + it 'members' do + expect(`"#{project}" --no-cache --vcr-cassette-name=users/RedHatOfficial --org RedHatOfficial org members`.strip).to eq [ + 'org: RedHatOfficial', + 'members: 6', + 'missing in data/users/members.txt: vcr dmc5179 eschabell Fryguy starryeyez024 suehle', + 'no longer members:' + ].join("\n") + end +end diff --git a/spec/project/commands/pr_spec.rb b/spec/project/commands/pr_spec.rb new file mode 100644 index 0000000..0afcc8b --- /dev/null +++ b/spec/project/commands/pr_spec.rb @@ -0,0 +1,6 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe 'project pr' do +end diff --git a/spec/project/commands/repos_spec.rb b/spec/project/commands/repos_spec.rb new file mode 100644 index 0000000..e3c34b6 --- /dev/null +++ b/spec/project/commands/repos_spec.rb @@ -0,0 +1,6 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe 'project repos' do +end diff --git a/spec/project/project_spec.rb b/spec/project/project_spec.rb new file mode 100644 index 0000000..d877f97 --- /dev/null +++ b/spec/project/project_spec.rb @@ -0,0 +1,17 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe 'project' do + include_context 'command line' + + describe 'help' do + it 'displays help' do + expect(`"#{project}" help`).to include 'project - GitHub project info tool.' + end + end + + pending '--token' + pending '--no-cache' + pending '--debug' +end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb new file mode 100644 index 0000000..611b1c9 --- /dev/null +++ b/spec/spec_helper.rb @@ -0,0 +1,11 @@ +# frozen_string_literal: true + +$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..')) + +require 'rubygems' +require 'rspec' +require 'lib/tools' + +Dir[File.join(File.dirname(__FILE__), 'support', '**/*.rb')].each do |file| + require file +end diff --git a/spec/support/command_line.rb b/spec/support/command_line.rb new file mode 100644 index 0000000..40c8660 --- /dev/null +++ b/spec/support/command_line.rb @@ -0,0 +1,3 @@ +RSpec.shared_context 'command line' do + let(:project) { File.expand_path(File.join(__FILE__, '../../../bin/project')) } +end diff --git a/spec/support/github.rb b/spec/support/github.rb new file mode 100644 index 0000000..3822433 --- /dev/null +++ b/spec/support/github.rb @@ -0,0 +1,3 @@ +Octokit.auto_paginate = true +$github = Octokit::Client.new +$org = GitHub::Organization.new('RedHatOfficial') diff --git a/spec/support/vcr.rb b/spec/support/vcr.rb new file mode 100644 index 0000000..7db605f --- /dev/null +++ b/spec/support/vcr.rb @@ -0,0 +1,19 @@ +# frozen_string_literal: true + +require 'vcr' +require 'webmock/rspec' + +VCR.configure do |config| + config.cassette_library_dir = 'spec/fixtures' + config.hook_into :webmock + config.configure_rspec_metadata! + if ENV.key?('GITHUB_API_TOKEN') + config.filter_sensitive_data('') do + ENV['GITHUB_API_TOKEN'] + end + end + config.before_record do |i| + i.response.body.force_encoding('UTF-8') + end + config.default_cassette_options = { record: :new_episodes } +end