Skip to content

Commit

Permalink
try php
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Kusumgar committed Jul 25, 2024
1 parent 583fcf9 commit 87976f2
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions metadata-structure/metadata-structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ The structure of these are the same bar the keys to the `plotSettingsControl` wh

A useful visualisation that I'll keep referring to so that we don't get lost in the json nestings is (note that `indicators` is not expanded as this just contains metadata about the indicator values such as their format which isn't relevant to the metadata structure):

```ruby
```php
├── filterTypes[]
│ ├── id
│ ├── column_id
Expand All @@ -50,7 +50,7 @@ A useful visualisation that I'll keep referring to so that we don't get lost in
├── plotSettingsControl{}
│ ├── defaultEffect
│ │ ├── setFilters
│ │ ├── ... (same as effect below)
│ │ ├── ... (see effect below)
│ ├── plotSettings[]
│ │ ├── label
│ │ ├── id
Expand All @@ -69,7 +69,7 @@ This is just a full version of the json schema.

## Filters

```ruby
```php
├── filterTypes[] # here
│ ├── id # 1
│ ├── column_id # 2
Expand All @@ -82,7 +82,7 @@ This is just a full version of the json schema.
├── plotSettingsControl{}
│ ├── defaultEffect
│ │ ├── setFilters
│ │ ├── ... (same as effect below)
│ │ ├── ... (see effect below)
│ ├── plotSettings[]
│ │ ├── label
│ │ ├── id
Expand All @@ -105,7 +105,7 @@ The `filterTypes` key is the simplest. It is an array of all the filters that ca

## Plot Settings Control

```ruby
```php
├── filterTypes[]
│ ├── id
│ ├── column_id
Expand All @@ -118,7 +118,7 @@ The `filterTypes` key is the simplest. It is an array of all the filters that ca
├── plotSettingsControl{} # here
│ ├── defaultEffect # 1
│ │ ├── setFilters
│ │ ├── ... (same as effect below)
│ │ ├── ... (see effect below)
│ ├── plotSettings[] # 2
│ │ ├── label # 3
│ │ ├── id # 4
Expand All @@ -145,7 +145,7 @@ The plot settings controls is an object with keys of the relevant plot name (e.g

## Settings

```ruby
```php
├── filterTypes[]
│ ├── id
│ ├── column_id
Expand All @@ -158,7 +158,7 @@ The plot settings controls is an object with keys of the relevant plot name (e.g
├── plotSettingsControl{}
│ ├── defaultEffect
│ │ ├── setFilters
│ │ ├── ... (same as effect below)
│ │ ├── ... (see effect below)
│ ├── plotSettings[]
│ │ ├── label
│ │ ├── id
Expand All @@ -182,7 +182,7 @@ The `settings` completely determine the `filters` and their `selections`. The ne

## Effects

```ruby
```php
├── filterTypes[]
│ ├── id # a
│ ├── column_id
Expand All @@ -195,7 +195,7 @@ The `settings` completely determine the `filters` and their `selections`. The ne
├── plotSettingsControl{}
│ ├── defaultEffect # (here as well)
│ │ ├── setFilters
│ │ ├── ... (same as effect below)
│ │ ├── ... (see effect below)
│ ├── plotSettings[]
│ │ ├── label
│ │ ├── id
Expand All @@ -213,7 +213,7 @@ The `settings` completely determine the `filters` and their `selections`. The ne

For this section we will need a more detailed view of the effects structure

```ruby
```php
├── setFilters[] # 1
│ ├── filterId # 1.1
│ ├── label # 1.2
Expand Down

0 comments on commit 87976f2

Please sign in to comment.